h2ogpt-api / app.py
DylanWolf's picture
Update app.py
870f1e6
raw
history blame
1.19 kB
import os
import subprocess
# Clone the GitHub repository
os.system("git clone https://github.com/oobabooga/text-generation-webui.git")
# Navigate to the project directory
os.chdir("text-generation-webui")
# Install Node.js dependencies
os.system("npm install")
# Start the Node.js server in the background
node_process = subprocess.Popen(["npm", "start"])
# Wait for the Node.js server to start
input("Press Enter when the Node.js server is running...")
# Activate a virtual environment for Python
os.system("python3 -m venv venv")
if os.name == "posix":
os.system("source venv/bin/activate")
else:
os.system("venv\\Scripts\\activate")
# Install Gradio
os.system("pip install gradio")
# Modify the original code to integrate with Gradio
# Example code:
import gradio as gr
def generate_text(input_text):
# Replace this with your text generation logic
generated_text = "Generated text goes here"
return generated_text
iface = gr.Interface(
fn=generate_text,
inputs=gr.Textbox(),
outputs=gr.Textbox(),
)
# Launch the Gradio interface
iface.launch()
# When you're done, you can manually stop the Node.js server and deactivate the virtual environment.