Spaces:
Running
Running
File size: 3,895 Bytes
a98a37e 1101722 1a022bd 1115ab9 1101722 1a022bd 1101722 1a022bd 1101722 1a022bd 1101722 1a022bd 1101722 307ce47 1101722 0d9914e 57150a5 1101722 57150a5 1101722 57150a5 0d9914e 1101722 0d9914e 1101722 1a022bd 1101722 1a022bd 1101722 0d9914e 1101722 1a022bd 1101722 1a022bd 1101722 0d9914e 1101722 1a022bd 1101722 1a022bd 1101722 0d9914e 64cff8e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
import os
import sys
import time
import huggingface_hub
import transformers
from transformers import pipeline
import gradio as gr
import tempfile
from huggingface_hub import HfFolder
import streamlit as st
def main():
st.title("Application Idea Generator")
idea = st.text_input("What is your idea for an application?", "default idea")
if st.button("Generate Code"):
# L贸gica para generar el c贸digo basada en la idea
st.write(f"Generated code for idea: {idea}")
# Get the user's idea
st.title("Application Idea Generator")
idea = st.text_input("What is your idea for an application?", "default idea")
if st.button("Generate Code"):
# L贸gica para generar el c贸digo basada en la idea
st.write(f"Generated code for idea: {idea}")
# Generate the code for the application
code = gemmacode.generate(idea)
# Test the code
try:
transformers.pipeline("text-generation")(code)
except Exception as e:
print("The code failed to run:", e)
return
# Ensure the functionality of the application
try:
gr.Interface(fn=transformers.pipeline("text-generation"), inputs=gr.Textbox(), outputs=gr.Textbox()).launch()
except Exception as e:
print("The application failed to run:", e)
return
# Provide an embedded webapp demo of the user's idea implementation
try:
hf_folder = HfFolder(path=tempfile.mkdtemp())
hf_folder.save(code)
hf_folder.push_to_hub(repo_id="acecalisto3/gemmacode-demo", commit_message="Initial commit")
print(f"The demo is available at: https://huggingface.co/acecalisto3/gemmacode-demo")
except Exception as e:
print("The demo failed to launch:", e)
return
# Offer the option to rebuild or deploy
while True:
choice = input("Do you want to rebuild or deploy the application? (r/d/q) ")
if choice == "r":
# Rebuild the code
code = gemmacode.generate(idea)
# Test the code
try:
transformers.pipeline("text-generation")(code)
except Exception as e:
print("The code failed to run:", e)
return
# Ensure the functionality of the application
try:
gr.Interface(fn=transformers.pipeline("text-generation"), inputs=gr.Textbox(), outputs=gr.Textbox()).launch()
except Exception as e:
print("The application failed to run:", e)
return
# Provide an embedded webapp demo of the user's idea implementation
try:
hf_folder = HfFolder(path=tempfile.mkdtemp())
hf_folder.save(code)
hf_folder.push_to_hub(repo_id="acecalisto3/gemmacode-demo", commit_message="Initial commit")
print(f"The demo is available at: https://huggingface.co/acecalisto3/gemmacode-demo")
except Exception as e:
print("The demo failed to launch:", e)
return
elif choice == "d":
# Deploy the application
try:
api_token = os.environ["HF_TOKEN"]
hub = huggingface_hub.HfApi(api_token=api_token)
hub.create_repo(name="my-app", organization="my-org")
hf_folder = HfFolder(path=tempfile.mkdtemp())
hf_folder.save(code)
hf_folder.push_to_hub(repo_id="my-org/my-app", commit_message="Initial commit")
print("The application has been deployed to: https://huggingface.co/my-org/my-app")
except Exception as e:
print("The application failed to deploy:", e)
return
elif choice == "q":
break
else:
print("Invalid choice")
if __name__ == "__main__":
main() |