├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── recipe-template └── README.md └── recipes ├── confluent └── README.md ├── crewai ├── .streamlit │ └── secrets.toml ├── README.md ├── requirements.txt ├── streamlit.app.py ├── tools │ ├── __init__.py │ ├── browser_tools.py │ ├── calculator_tools.py │ └── search_tools.py ├── trip_agents.py └── trip_tasks.py ├── llamaindex ├── .gitignore ├── README.md ├── arc_finetuning_st │ ├── __init__.py │ ├── cli │ │ ├── __init__.py │ │ ├── command_line.py │ │ ├── evaluation.py │ │ └── finetune.py │ ├── finetuning │ │ ├── __init__.py │ │ ├── finetuning_example.py │ │ └── templates.py │ ├── streamlit │ │ ├── __init__.py │ │ ├── app.py │ │ └── controller.py │ └── workflows │ │ ├── __init__.py │ │ ├── arc_task_solver.py │ │ ├── events.py │ │ ├── models.py │ │ └── prompts.py ├── poetry.lock └── pyproject.toml ├── ollama ├── requirements.txt └── streamlit_app.py ├── openai └── README.md ├── replicate ├── .streamlit │ └── secrets_template.toml ├── README.md ├── requirements.txt └── streamlit_app.py ├── replit └── README.md ├── trulens ├── .env.template ├── README.md ├── app.py ├── base.py ├── feedback.py ├── requirements.txt └── vector_store.py └── weaviate ├── .streamlit └── secrets_template.toml ├── README.md ├── demo_app.py ├── helpers ├── add_data.py ├── data │ └── 1950_2024_movies_info.json ├── demo_movie_query.graphql └── verify_data.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/README.md -------------------------------------------------------------------------------- /recipe-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipe-template/README.md -------------------------------------------------------------------------------- /recipes/confluent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/confluent/README.md -------------------------------------------------------------------------------- /recipes/crewai/.streamlit/secrets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/.streamlit/secrets.toml -------------------------------------------------------------------------------- /recipes/crewai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/README.md -------------------------------------------------------------------------------- /recipes/crewai/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/requirements.txt -------------------------------------------------------------------------------- /recipes/crewai/streamlit.app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/streamlit.app.py -------------------------------------------------------------------------------- /recipes/crewai/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/crewai/tools/browser_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/tools/browser_tools.py -------------------------------------------------------------------------------- /recipes/crewai/tools/calculator_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/tools/calculator_tools.py -------------------------------------------------------------------------------- /recipes/crewai/tools/search_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/tools/search_tools.py -------------------------------------------------------------------------------- /recipes/crewai/trip_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/trip_agents.py -------------------------------------------------------------------------------- /recipes/crewai/trip_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/crewai/trip_tasks.py -------------------------------------------------------------------------------- /recipes/llamaindex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/.gitignore -------------------------------------------------------------------------------- /recipes/llamaindex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/README.md -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/cli/command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/cli/command_line.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/cli/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/cli/evaluation.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/cli/finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/cli/finetune.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/finetuning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/finetuning/finetuning_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/finetuning/finetuning_example.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/finetuning/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/finetuning/templates.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/streamlit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/streamlit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/streamlit/app.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/streamlit/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/streamlit/controller.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/workflows/arc_task_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/workflows/arc_task_solver.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/workflows/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/workflows/events.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/workflows/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/workflows/models.py -------------------------------------------------------------------------------- /recipes/llamaindex/arc_finetuning_st/workflows/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/arc_finetuning_st/workflows/prompts.py -------------------------------------------------------------------------------- /recipes/llamaindex/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/poetry.lock -------------------------------------------------------------------------------- /recipes/llamaindex/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/llamaindex/pyproject.toml -------------------------------------------------------------------------------- /recipes/ollama/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit==1.33.0 2 | ollama 3 | openai 4 | -------------------------------------------------------------------------------- /recipes/ollama/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/ollama/streamlit_app.py -------------------------------------------------------------------------------- /recipes/openai/README.md: -------------------------------------------------------------------------------- 1 | # OpenAI 2 | -------------------------------------------------------------------------------- /recipes/replicate/.streamlit/secrets_template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/replicate/.streamlit/secrets_template.toml -------------------------------------------------------------------------------- /recipes/replicate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/replicate/README.md -------------------------------------------------------------------------------- /recipes/replicate/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | replicate 3 | transformers 4 | -------------------------------------------------------------------------------- /recipes/replicate/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/replicate/streamlit_app.py -------------------------------------------------------------------------------- /recipes/replit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/replit/README.md -------------------------------------------------------------------------------- /recipes/trulens/.env.template: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= 2 | -------------------------------------------------------------------------------- /recipes/trulens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/trulens/README.md -------------------------------------------------------------------------------- /recipes/trulens/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/trulens/app.py -------------------------------------------------------------------------------- /recipes/trulens/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/trulens/base.py -------------------------------------------------------------------------------- /recipes/trulens/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/trulens/feedback.py -------------------------------------------------------------------------------- /recipes/trulens/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/trulens/requirements.txt -------------------------------------------------------------------------------- /recipes/trulens/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/trulens/vector_store.py -------------------------------------------------------------------------------- /recipes/weaviate/.streamlit/secrets_template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/weaviate/.streamlit/secrets_template.toml -------------------------------------------------------------------------------- /recipes/weaviate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/weaviate/README.md -------------------------------------------------------------------------------- /recipes/weaviate/demo_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/weaviate/demo_app.py -------------------------------------------------------------------------------- /recipes/weaviate/helpers/add_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/weaviate/helpers/add_data.py -------------------------------------------------------------------------------- /recipes/weaviate/helpers/data/1950_2024_movies_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/weaviate/helpers/data/1950_2024_movies_info.json -------------------------------------------------------------------------------- /recipes/weaviate/helpers/demo_movie_query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/weaviate/helpers/demo_movie_query.graphql -------------------------------------------------------------------------------- /recipes/weaviate/helpers/verify_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/cookbook/HEAD/recipes/weaviate/helpers/verify_data.py -------------------------------------------------------------------------------- /recipes/weaviate/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | st-weaviate-connection 3 | tqdm --------------------------------------------------------------------------------