├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── example.env ├── examples ├── math.png └── strawberry.png ├── file-or-image-context ├── app.py ├── g1.py └── requirements.txt ├── g1.py ├── gradio ├── app.py └── requirements.txt ├── ollama ├── ollama_app.py └── requirements.txt ├── requirements.txt └── tool-use ├── README.md ├── app.py └── g1_experimental.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/app.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- 1 | GROQ_API_KEY=gsk... -------------------------------------------------------------------------------- /examples/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/examples/math.png -------------------------------------------------------------------------------- /examples/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/examples/strawberry.png -------------------------------------------------------------------------------- /file-or-image-context/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/file-or-image-context/app.py -------------------------------------------------------------------------------- /file-or-image-context/g1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/file-or-image-context/g1.py -------------------------------------------------------------------------------- /file-or-image-context/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | groq 3 | pytesseract -------------------------------------------------------------------------------- /g1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/g1.py -------------------------------------------------------------------------------- /gradio/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/gradio/app.py -------------------------------------------------------------------------------- /gradio/requirements.txt: -------------------------------------------------------------------------------- 1 | groq 2 | gradio -------------------------------------------------------------------------------- /ollama/ollama_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/ollama/ollama_app.py -------------------------------------------------------------------------------- /ollama/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | ollama 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | groq 3 | -------------------------------------------------------------------------------- /tool-use/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/tool-use/README.md -------------------------------------------------------------------------------- /tool-use/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/tool-use/app.py -------------------------------------------------------------------------------- /tool-use/g1_experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-with-groq/g1/HEAD/tool-use/g1_experimental.py --------------------------------------------------------------------------------