├── .gitignore ├── DEEPRESEARCH.md ├── LICENSE ├── README.md ├── docker-compose.yml ├── env.example ├── hayhooks ├── .pre-commit-config.yaml ├── CLAUDE.md ├── Dockerfile ├── README.md ├── app.py ├── components │ ├── __init__.py │ ├── content_extraction.py │ ├── fetchers.py │ ├── github.py │ ├── google │ │ ├── __init__.py │ │ ├── dataclasses │ │ │ ├── __init__.py │ │ │ ├── google_calendar_models.py │ │ │ └── google_mail_models.py │ │ ├── google_calendar_reader.py │ │ ├── google_errors.py │ │ ├── google_mail_reader.py │ │ ├── google_oauth.py │ │ ├── google_oauth_component.py │ │ └── google_youtube_transcript_reader.py │ ├── letta_setup.py │ ├── notion.py │ ├── stackoverflow.py │ ├── web_search │ │ ├── __init__.py │ │ ├── brave_web_search.py │ │ ├── exa_web_search.py │ │ ├── linkup_web_search.py │ │ ├── searxng_web_search.py │ │ └── tavily_web_search.py │ ├── youtube_transcript.py │ └── zotero.py ├── google_tokens │ └── .marker ├── pipelines │ ├── analyze_trace │ │ └── pipeline_wrapper.py │ ├── excerpt │ │ └── pipeline_wrapper.py │ ├── extract │ │ └── pipeline_wrapper.py │ ├── google_auth │ │ └── pipeline_wrapper.py │ ├── letta_proxy │ │ └── pipeline_wrapper.py │ ├── provision_search_agent │ │ └── pipeline_wrapper.py │ ├── search │ │ └── pipeline_wrapper.py │ ├── search_calendars │ │ └── pipeline_wrapper.py │ ├── search_emails │ │ └── pipeline_wrapper.py │ ├── search_stackoverflow │ │ └── pipeline_wrapper.py │ └── search_zotero │ │ └── pipeline_wrapper.py ├── pyproject.toml ├── resources │ ├── __init__.py │ ├── excerpt_prompt.md │ ├── excerpt_tool.py │ ├── extract_tool.py │ ├── github_issue_prompt.md │ ├── google_auth_tool.py │ ├── persona_memory.md │ ├── search_calendars_tool.py │ ├── search_email_prompt.md │ ├── search_emails_tool.py │ ├── search_prompt.md │ ├── search_stackoverflow_tool.py │ ├── search_tool.py │ ├── search_zotero_tool.py │ ├── stackoverflow_prompt.md │ └── utils.py ├── static │ └── index.html ├── tests │ ├── components │ │ ├── test_content_extraction.py │ │ ├── test_github_issue.py │ │ ├── test_github_repo.py │ │ ├── test_linkup_web_search.py │ │ ├── test_notion.py │ │ ├── test_search_extraction.py │ │ ├── test_stackoverflow_stack_trace_analyzer.py │ │ ├── test_youtube_transcript.py │ │ └── test_zotero_jsonpath.py │ ├── pipelines │ │ └── test_zotero_jsonpath_pipeline.py │ └── test_example.py └── uv.lock ├── images ├── aispam.png ├── extract.png ├── grounding.png ├── hello.png └── sunset.png ├── initializer ├── .python-version ├── Dockerfile ├── README.md ├── main.py ├── pyproject.toml └── uv.lock ├── letta └── letta_mcp_config.json ├── litellm ├── Dockerfile └── config.yaml └── searxng ├── limiter.toml ├── settings.yml ├── settings.yml.new └── uwsgi.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/.gitignore -------------------------------------------------------------------------------- /DEEPRESEARCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/DEEPRESEARCH.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/env.example -------------------------------------------------------------------------------- /hayhooks/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/.pre-commit-config.yaml -------------------------------------------------------------------------------- /hayhooks/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/CLAUDE.md -------------------------------------------------------------------------------- /hayhooks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/Dockerfile -------------------------------------------------------------------------------- /hayhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/README.md -------------------------------------------------------------------------------- /hayhooks/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/app.py -------------------------------------------------------------------------------- /hayhooks/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hayhooks/components/content_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/content_extraction.py -------------------------------------------------------------------------------- /hayhooks/components/fetchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/fetchers.py -------------------------------------------------------------------------------- /hayhooks/components/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/github.py -------------------------------------------------------------------------------- /hayhooks/components/google/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hayhooks/components/google/dataclasses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hayhooks/components/google/dataclasses/google_calendar_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/google/dataclasses/google_calendar_models.py -------------------------------------------------------------------------------- /hayhooks/components/google/dataclasses/google_mail_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/google/dataclasses/google_mail_models.py -------------------------------------------------------------------------------- /hayhooks/components/google/google_calendar_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/google/google_calendar_reader.py -------------------------------------------------------------------------------- /hayhooks/components/google/google_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/google/google_errors.py -------------------------------------------------------------------------------- /hayhooks/components/google/google_mail_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/google/google_mail_reader.py -------------------------------------------------------------------------------- /hayhooks/components/google/google_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/google/google_oauth.py -------------------------------------------------------------------------------- /hayhooks/components/google/google_oauth_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/google/google_oauth_component.py -------------------------------------------------------------------------------- /hayhooks/components/google/google_youtube_transcript_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/google/google_youtube_transcript_reader.py -------------------------------------------------------------------------------- /hayhooks/components/letta_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/letta_setup.py -------------------------------------------------------------------------------- /hayhooks/components/notion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/notion.py -------------------------------------------------------------------------------- /hayhooks/components/stackoverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/stackoverflow.py -------------------------------------------------------------------------------- /hayhooks/components/web_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hayhooks/components/web_search/brave_web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/web_search/brave_web_search.py -------------------------------------------------------------------------------- /hayhooks/components/web_search/exa_web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/web_search/exa_web_search.py -------------------------------------------------------------------------------- /hayhooks/components/web_search/linkup_web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/web_search/linkup_web_search.py -------------------------------------------------------------------------------- /hayhooks/components/web_search/searxng_web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/web_search/searxng_web_search.py -------------------------------------------------------------------------------- /hayhooks/components/web_search/tavily_web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/web_search/tavily_web_search.py -------------------------------------------------------------------------------- /hayhooks/components/youtube_transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/youtube_transcript.py -------------------------------------------------------------------------------- /hayhooks/components/zotero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/components/zotero.py -------------------------------------------------------------------------------- /hayhooks/google_tokens/.marker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/google_tokens/.marker -------------------------------------------------------------------------------- /hayhooks/pipelines/analyze_trace/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/analyze_trace/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/excerpt/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/excerpt/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/extract/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/extract/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/google_auth/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/google_auth/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/letta_proxy/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/letta_proxy/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/provision_search_agent/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/provision_search_agent/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/search/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/search/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/search_calendars/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/search_calendars/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/search_emails/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/search_emails/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/search_stackoverflow/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/search_stackoverflow/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pipelines/search_zotero/pipeline_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pipelines/search_zotero/pipeline_wrapper.py -------------------------------------------------------------------------------- /hayhooks/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/pyproject.toml -------------------------------------------------------------------------------- /hayhooks/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/__init__.py -------------------------------------------------------------------------------- /hayhooks/resources/excerpt_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/excerpt_prompt.md -------------------------------------------------------------------------------- /hayhooks/resources/excerpt_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/excerpt_tool.py -------------------------------------------------------------------------------- /hayhooks/resources/extract_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/extract_tool.py -------------------------------------------------------------------------------- /hayhooks/resources/github_issue_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/github_issue_prompt.md -------------------------------------------------------------------------------- /hayhooks/resources/google_auth_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/google_auth_tool.py -------------------------------------------------------------------------------- /hayhooks/resources/persona_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/persona_memory.md -------------------------------------------------------------------------------- /hayhooks/resources/search_calendars_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/search_calendars_tool.py -------------------------------------------------------------------------------- /hayhooks/resources/search_email_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/search_email_prompt.md -------------------------------------------------------------------------------- /hayhooks/resources/search_emails_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/search_emails_tool.py -------------------------------------------------------------------------------- /hayhooks/resources/search_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/search_prompt.md -------------------------------------------------------------------------------- /hayhooks/resources/search_stackoverflow_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/search_stackoverflow_tool.py -------------------------------------------------------------------------------- /hayhooks/resources/search_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/search_tool.py -------------------------------------------------------------------------------- /hayhooks/resources/search_zotero_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/search_zotero_tool.py -------------------------------------------------------------------------------- /hayhooks/resources/stackoverflow_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/stackoverflow_prompt.md -------------------------------------------------------------------------------- /hayhooks/resources/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/resources/utils.py -------------------------------------------------------------------------------- /hayhooks/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/static/index.html -------------------------------------------------------------------------------- /hayhooks/tests/components/test_content_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_content_extraction.py -------------------------------------------------------------------------------- /hayhooks/tests/components/test_github_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_github_issue.py -------------------------------------------------------------------------------- /hayhooks/tests/components/test_github_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_github_repo.py -------------------------------------------------------------------------------- /hayhooks/tests/components/test_linkup_web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_linkup_web_search.py -------------------------------------------------------------------------------- /hayhooks/tests/components/test_notion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_notion.py -------------------------------------------------------------------------------- /hayhooks/tests/components/test_search_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_search_extraction.py -------------------------------------------------------------------------------- /hayhooks/tests/components/test_stackoverflow_stack_trace_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_stackoverflow_stack_trace_analyzer.py -------------------------------------------------------------------------------- /hayhooks/tests/components/test_youtube_transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_youtube_transcript.py -------------------------------------------------------------------------------- /hayhooks/tests/components/test_zotero_jsonpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/components/test_zotero_jsonpath.py -------------------------------------------------------------------------------- /hayhooks/tests/pipelines/test_zotero_jsonpath_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/pipelines/test_zotero_jsonpath_pipeline.py -------------------------------------------------------------------------------- /hayhooks/tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/tests/test_example.py -------------------------------------------------------------------------------- /hayhooks/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/hayhooks/uv.lock -------------------------------------------------------------------------------- /images/aispam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/images/aispam.png -------------------------------------------------------------------------------- /images/extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/images/extract.png -------------------------------------------------------------------------------- /images/grounding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/images/grounding.png -------------------------------------------------------------------------------- /images/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/images/hello.png -------------------------------------------------------------------------------- /images/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/images/sunset.png -------------------------------------------------------------------------------- /initializer/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /initializer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/initializer/Dockerfile -------------------------------------------------------------------------------- /initializer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/initializer/README.md -------------------------------------------------------------------------------- /initializer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/initializer/main.py -------------------------------------------------------------------------------- /initializer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/initializer/pyproject.toml -------------------------------------------------------------------------------- /initializer/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/initializer/uv.lock -------------------------------------------------------------------------------- /letta/letta_mcp_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/letta/letta_mcp_config.json -------------------------------------------------------------------------------- /litellm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/litellm/Dockerfile -------------------------------------------------------------------------------- /litellm/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/litellm/config.yaml -------------------------------------------------------------------------------- /searxng/limiter.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/searxng/limiter.toml -------------------------------------------------------------------------------- /searxng/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/searxng/settings.yml -------------------------------------------------------------------------------- /searxng/settings.yml.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/searxng/settings.yml.new -------------------------------------------------------------------------------- /searxng/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsargent/groundedllm/HEAD/searxng/uwsgi.ini --------------------------------------------------------------------------------