Hugging Face is way more fun with friends and colleagues! 🤗 Join an organization

🚀 Get started with your gradio Space!

Your new space has been created, follow these steps to get started (or read our full documentation )

Start by cloning this repo by using:

					$git clone https://huggingface.co/spaces/kat33/llama.cpp
				

Create your gradio app.py file:

import gradio as gr

def greet(name):
    return "Hello " + name + "!!"

iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()

Then commit and push:

					$git add app.py
					$git commit -m "Add application file"
					$git push
				

(Hint: Create the app.py file right in your browser alternatively)

🤗 Your app should be running on this page after a few moments !

Dependencies

You can add a requirements.txt file at the root of the repository to specify Python dependencies

If needed, you can also add a packages.txt file at the root of the repository to specify Debian dependencies.

The gradio package is pre-installed and its version is set in the sdk_version field in the README.md file.

Documentation

Check out the full documentation of gradio Spaces here