Spaces:
Runtime error
Runtime error
File size: 1,193 Bytes
870f1e6 82598dc 870f1e6 |
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 |
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.
|