├── .gitignore ├── CLOUD_RU_SETUP.md ├── LICENSE ├── Makefile ├── README.md ├── SUBAGENTS.md ├── TOOLS.md ├── backend ├── graph │ ├── .dockerignore │ ├── .python-version │ ├── Makefile │ ├── README.md │ ├── giga_agent │ │ ├── __init__.py │ │ ├── agents │ │ │ ├── __init__.py │ │ │ ├── gis_agent │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── graph.py │ │ │ │ ├── nodes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attractions.py │ │ │ │ │ ├── food.py │ │ │ │ │ └── hotels.py │ │ │ │ ├── page.html │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── gis_client.py │ │ │ ├── landing_agent │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── graph.py │ │ │ │ ├── nodes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── coder.py │ │ │ │ │ ├── image.py │ │ │ │ │ └── plan.py │ │ │ │ ├── prompts │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ru.py │ │ │ │ └── tools.py │ │ │ ├── lean_canvas │ │ │ │ └── __init__.py │ │ │ ├── meme_agent │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── graph.py │ │ │ │ ├── nodes │ │ │ │ │ ├── BlackHanSans-Regular.ttf │ │ │ │ │ ├── DelaGothicOne-Regular.ttf │ │ │ │ │ ├── ZCOOLQingKeHuangYou-Regular.ttf │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── images.py │ │ │ │ │ ├── impact.ttf │ │ │ │ │ └── text.py │ │ │ │ └── prompts │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ru.py │ │ │ ├── podcast │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── constants.py │ │ │ │ ├── graph.py │ │ │ │ ├── prompts.py │ │ │ │ ├── schema.py │ │ │ │ ├── tts_sber.py │ │ │ │ └── utils.py │ │ │ ├── presentation_agent │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── data │ │ │ │ │ └── messages.json │ │ │ │ ├── graph.py │ │ │ │ ├── nodes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── images.py │ │ │ │ │ ├── plan.py │ │ │ │ │ ├── presentation.html │ │ │ │ │ └── slides.py │ │ │ │ └── prompts │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ru.py │ │ │ └── researcher │ │ │ │ ├── __init__.py │ │ │ │ └── graph.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── dump.json │ │ ├── generators │ │ │ ├── __init__.py │ │ │ └── image │ │ │ │ ├── __init__.py │ │ │ │ ├── fusion_brain.py │ │ │ │ ├── gigachat.py │ │ │ │ ├── image_gen.py │ │ │ │ └── openai.py │ │ ├── output_parsers │ │ │ ├── __init__.py │ │ │ └── html_parser.py │ │ ├── prompts │ │ │ ├── __init__.py │ │ │ ├── few_shots.py │ │ │ ├── image.py │ │ │ └── main_prompt.py │ │ ├── repl_tools │ │ │ ├── __init__.py │ │ │ ├── llm.py │ │ │ ├── models │ │ │ │ ├── README.md │ │ │ │ ├── rusentiment_random_posts.csv │ │ │ │ ├── sentiment_gigachat.joblib │ │ │ │ ├── sentiment_model.ipynb │ │ │ │ └── sentiment_openai.joblib │ │ │ ├── sentiment.py │ │ │ └── utils.py │ │ ├── scripts │ │ │ └── __init__.py │ │ ├── settings.py │ │ ├── tasks_app.py │ │ ├── tool_graph.py │ │ ├── tool_server │ │ │ ├── __init__.py │ │ │ ├── tool_client.py │ │ │ └── tool_server.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── another.py │ │ │ ├── cve.py │ │ │ ├── github.py │ │ │ ├── python.py │ │ │ ├── repl │ │ │ │ ├── __init__.py │ │ │ │ ├── args_tool.py │ │ │ │ └── message_tool.py │ │ │ ├── scraper.py │ │ │ ├── vk.py │ │ │ └── weather.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── jupyter.py │ │ │ ├── lang.py │ │ │ ├── llm.py │ │ │ ├── messages.py │ │ │ └── python.py │ ├── langgraph.json │ ├── pyproject.toml │ └── uv.lock └── repl │ ├── .dockerignore │ ├── .python-version │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── __init__.py │ ├── app │ ├── __init__.py │ ├── main.py │ ├── run_jupyter.py │ ├── settings.py │ ├── tool_client.py │ └── upload_server.py │ ├── files │ ├── Bitcoin_Historical_Data.csv │ ├── ab_testing.csv │ ├── aero_tour.csv │ ├── agro_farm.csv │ ├── bio_tech.csv │ ├── chinook.db │ ├── eco_energy.csv │ ├── electro_snab.csv │ ├── express_logistics.csv │ ├── finance_plus.csv │ ├── imdb_movies.csv │ ├── imdb_top_1000.csv │ ├── internet_store_sales_data.csv │ ├── kp_all_movies.csv │ ├── mir_productov.csv │ ├── moscow_flats_dataset.csv │ ├── sales.xlsx │ ├── sp500_companies.csv │ ├── stuff_catalogue.csv │ ├── telecom.csv │ ├── zdorovye_plus.csv │ └── отзывы.csv │ ├── models │ └── .gitkeep │ ├── pyproject.toml │ └── uv.lock ├── docker-compose.yml ├── docs ├── examples │ ├── changelog_landing │ │ └── changelog_landing.pdf │ ├── city_explorer │ │ └── city_explorer.pdf │ ├── cluster_comments │ │ ├── clusters_en.pdf │ │ └── clusters_ru.pdf │ ├── lean_canvas │ │ └── lean_canvas.pdf │ ├── memes │ │ ├── chat.pdf │ │ ├── meme1.jpeg │ │ └── meme2.jpg │ ├── mortgage │ │ ├── landing_presentation_chat.pdf │ │ └── presentation.pdf │ ├── mortgage_podcast │ │ ├── podcast.mp3 │ │ └── podcast_chat.pdf │ └── sentiment_analysis │ │ └── sentiment_analysis.pdf └── images │ ├── demo.gif │ ├── diagram.png │ ├── giga-agent_dark_logo.png │ ├── giga-agent_light_logo.png │ └── schema.png ├── env_examples ├── README.md ├── gigachat │ ├── .docker.env.example │ └── .env.example └── openai │ ├── .docker.env.example │ └── .env.example └── front ├── .dockerignore ├── Dockerfile ├── Makefile ├── index.html ├── nginx.conf ├── package.json ├── public ├── bust.svg ├── food.svg ├── hotel.svg └── index.html ├── src ├── App.tsx ├── assets │ ├── logo-mini.png │ ├── logo.png │ └── qr.png ├── components │ ├── Attachments.tsx │ ├── AudioPlayer.tsx │ ├── Chat.tsx │ ├── ChatError.tsx │ ├── DemoChat.tsx │ ├── DemoItemEditor.tsx │ ├── DemoSettings.tsx │ ├── DemoToolBar.tsx │ ├── GraphImage.tsx │ ├── HTMLPage.tsx │ ├── InputArea.tsx │ ├── Message.tsx │ ├── MessageAttachments.tsx │ ├── MessageEditor.tsx │ ├── MessageList.tsx │ ├── OverlayPortal.tsx │ ├── Settings.tsx │ ├── Sidebar.tsx │ ├── Spinner.tsx │ ├── ThinkingIndicator.tsx │ ├── ToolBar.tsx │ └── ToolMessage.tsx ├── config.ts ├── hooks │ ├── DemoItemsProvider.tsx │ ├── SelectedAttachmentsContext.tsx │ ├── useFileUploads.ts │ └── useStableMessages.tsx ├── index.tsx ├── interfaces.ts └── styles │ └── GlobalStyle.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/.gitignore -------------------------------------------------------------------------------- /CLOUD_RU_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/CLOUD_RU_SETUP.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/README.md -------------------------------------------------------------------------------- /SUBAGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/SUBAGENTS.md -------------------------------------------------------------------------------- /TOOLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/TOOLS.md -------------------------------------------------------------------------------- /backend/graph/.dockerignore: -------------------------------------------------------------------------------- 1 | .langgraph_api 2 | bin -------------------------------------------------------------------------------- /backend/graph/.python-version: -------------------------------------------------------------------------------- 1 | 3.12.9 2 | -------------------------------------------------------------------------------- /backend/graph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/Makefile -------------------------------------------------------------------------------- /backend/graph/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/gis_agent/config.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/gis_agent/graph.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/nodes/attractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/gis_agent/nodes/attractions.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/nodes/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/gis_agent/nodes/food.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/nodes/hotels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/gis_agent/nodes/hotels.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/gis_agent/page.html -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/gis_agent/utils/gis_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/gis_agent/utils/gis_client.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/landing_agent/config.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/landing_agent/graph.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/nodes/coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/landing_agent/nodes/coder.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/nodes/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/landing_agent/nodes/image.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/nodes/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/landing_agent/nodes/plan.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/prompts/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/landing_agent/prompts/ru.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/landing_agent/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/landing_agent/tools.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/lean_canvas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/lean_canvas/__init__.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/config.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/graph.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/nodes/BlackHanSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/nodes/BlackHanSans-Regular.ttf -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/nodes/DelaGothicOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/nodes/DelaGothicOne-Regular.ttf -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/nodes/ZCOOLQingKeHuangYou-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/nodes/ZCOOLQingKeHuangYou-Regular.ttf -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/nodes/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/nodes/images.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/nodes/impact.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/nodes/impact.ttf -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/nodes/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/nodes/text.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/meme_agent/prompts/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/meme_agent/prompts/ru.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/podcast/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/podcast/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/podcast/config.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/podcast/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/podcast/constants.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/podcast/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/podcast/graph.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/podcast/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/podcast/prompts.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/podcast/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/podcast/schema.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/podcast/tts_sber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/podcast/tts_sber.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/podcast/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/podcast/utils.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/presentation_agent/config.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/data/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/presentation_agent/data/messages.json -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/presentation_agent/graph.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/nodes/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/presentation_agent/nodes/images.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/nodes/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/presentation_agent/nodes/plan.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/nodes/presentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/presentation_agent/nodes/presentation.html -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/nodes/slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/presentation_agent/nodes/slides.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/presentation_agent/prompts/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/presentation_agent/prompts/ru.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/researcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/agents/researcher/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/agents/researcher/graph.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/cli.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/config.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/dump.json -------------------------------------------------------------------------------- /backend/graph/giga_agent/generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/generators/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/generators/image/__init__.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/generators/image/fusion_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/generators/image/fusion_brain.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/generators/image/gigachat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/generators/image/gigachat.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/generators/image/image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/generators/image/image_gen.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/generators/image/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/generators/image/openai.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/output_parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/output_parsers/html_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/output_parsers/html_parser.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/prompts/few_shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/prompts/few_shots.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/prompts/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/prompts/image.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/prompts/main_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/prompts/main_prompt.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/repl_tools/llm.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/repl_tools/models/README.md -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/models/rusentiment_random_posts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/repl_tools/models/rusentiment_random_posts.csv -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/models/sentiment_gigachat.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/repl_tools/models/sentiment_gigachat.joblib -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/models/sentiment_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/repl_tools/models/sentiment_model.ipynb -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/models/sentiment_openai.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/repl_tools/models/sentiment_openai.joblib -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/repl_tools/sentiment.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/repl_tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/repl_tools/utils.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/settings.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tasks_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tasks_app.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tool_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tool_graph.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tool_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/tool_server/tool_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tool_server/tool_client.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tool_server/tool_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tool_server/tool_server.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/another.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/another.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/cve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/cve.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/github.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/python.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/repl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/repl/__init__.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/repl/args_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/repl/args_tool.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/repl/message_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/repl/message_tool.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/scraper.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/vk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/vk.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/tools/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/tools/weather.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/graph/giga_agent/utils/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/utils/jupyter.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/utils/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/utils/lang.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/utils/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/utils/llm.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/utils/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/utils/messages.py -------------------------------------------------------------------------------- /backend/graph/giga_agent/utils/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/giga_agent/utils/python.py -------------------------------------------------------------------------------- /backend/graph/langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/langgraph.json -------------------------------------------------------------------------------- /backend/graph/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/pyproject.toml -------------------------------------------------------------------------------- /backend/graph/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/graph/uv.lock -------------------------------------------------------------------------------- /backend/repl/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/.dockerignore -------------------------------------------------------------------------------- /backend/repl/.python-version: -------------------------------------------------------------------------------- 1 | 3.12.9 2 | -------------------------------------------------------------------------------- /backend/repl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/Dockerfile -------------------------------------------------------------------------------- /backend/repl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/Makefile -------------------------------------------------------------------------------- /backend/repl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/README.md -------------------------------------------------------------------------------- /backend/repl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/repl/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/repl/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/app/main.py -------------------------------------------------------------------------------- /backend/repl/app/run_jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/app/run_jupyter.py -------------------------------------------------------------------------------- /backend/repl/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/app/settings.py -------------------------------------------------------------------------------- /backend/repl/app/tool_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/app/tool_client.py -------------------------------------------------------------------------------- /backend/repl/app/upload_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/app/upload_server.py -------------------------------------------------------------------------------- /backend/repl/files/Bitcoin_Historical_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/Bitcoin_Historical_Data.csv -------------------------------------------------------------------------------- /backend/repl/files/ab_testing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/ab_testing.csv -------------------------------------------------------------------------------- /backend/repl/files/aero_tour.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/aero_tour.csv -------------------------------------------------------------------------------- /backend/repl/files/agro_farm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/agro_farm.csv -------------------------------------------------------------------------------- /backend/repl/files/bio_tech.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/bio_tech.csv -------------------------------------------------------------------------------- /backend/repl/files/chinook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/chinook.db -------------------------------------------------------------------------------- /backend/repl/files/eco_energy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/eco_energy.csv -------------------------------------------------------------------------------- /backend/repl/files/electro_snab.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/electro_snab.csv -------------------------------------------------------------------------------- /backend/repl/files/express_logistics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/express_logistics.csv -------------------------------------------------------------------------------- /backend/repl/files/finance_plus.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/finance_plus.csv -------------------------------------------------------------------------------- /backend/repl/files/imdb_movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/imdb_movies.csv -------------------------------------------------------------------------------- /backend/repl/files/imdb_top_1000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/imdb_top_1000.csv -------------------------------------------------------------------------------- /backend/repl/files/internet_store_sales_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/internet_store_sales_data.csv -------------------------------------------------------------------------------- /backend/repl/files/kp_all_movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/kp_all_movies.csv -------------------------------------------------------------------------------- /backend/repl/files/mir_productov.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/mir_productov.csv -------------------------------------------------------------------------------- /backend/repl/files/moscow_flats_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/moscow_flats_dataset.csv -------------------------------------------------------------------------------- /backend/repl/files/sales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/sales.xlsx -------------------------------------------------------------------------------- /backend/repl/files/sp500_companies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/sp500_companies.csv -------------------------------------------------------------------------------- /backend/repl/files/stuff_catalogue.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/stuff_catalogue.csv -------------------------------------------------------------------------------- /backend/repl/files/telecom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/telecom.csv -------------------------------------------------------------------------------- /backend/repl/files/zdorovye_plus.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/zdorovye_plus.csv -------------------------------------------------------------------------------- /backend/repl/files/отзывы.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/files/отзывы.csv -------------------------------------------------------------------------------- /backend/repl/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/repl/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/pyproject.toml -------------------------------------------------------------------------------- /backend/repl/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/backend/repl/uv.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/examples/changelog_landing/changelog_landing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/changelog_landing/changelog_landing.pdf -------------------------------------------------------------------------------- /docs/examples/city_explorer/city_explorer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/city_explorer/city_explorer.pdf -------------------------------------------------------------------------------- /docs/examples/cluster_comments/clusters_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/cluster_comments/clusters_en.pdf -------------------------------------------------------------------------------- /docs/examples/cluster_comments/clusters_ru.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/cluster_comments/clusters_ru.pdf -------------------------------------------------------------------------------- /docs/examples/lean_canvas/lean_canvas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/lean_canvas/lean_canvas.pdf -------------------------------------------------------------------------------- /docs/examples/memes/chat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/memes/chat.pdf -------------------------------------------------------------------------------- /docs/examples/memes/meme1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/memes/meme1.jpeg -------------------------------------------------------------------------------- /docs/examples/memes/meme2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/memes/meme2.jpg -------------------------------------------------------------------------------- /docs/examples/mortgage/landing_presentation_chat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/mortgage/landing_presentation_chat.pdf -------------------------------------------------------------------------------- /docs/examples/mortgage/presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/mortgage/presentation.pdf -------------------------------------------------------------------------------- /docs/examples/mortgage_podcast/podcast.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/mortgage_podcast/podcast.mp3 -------------------------------------------------------------------------------- /docs/examples/mortgage_podcast/podcast_chat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/mortgage_podcast/podcast_chat.pdf -------------------------------------------------------------------------------- /docs/examples/sentiment_analysis/sentiment_analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/examples/sentiment_analysis/sentiment_analysis.pdf -------------------------------------------------------------------------------- /docs/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/images/demo.gif -------------------------------------------------------------------------------- /docs/images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/images/diagram.png -------------------------------------------------------------------------------- /docs/images/giga-agent_dark_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/images/giga-agent_dark_logo.png -------------------------------------------------------------------------------- /docs/images/giga-agent_light_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/images/giga-agent_light_logo.png -------------------------------------------------------------------------------- /docs/images/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/docs/images/schema.png -------------------------------------------------------------------------------- /env_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/env_examples/README.md -------------------------------------------------------------------------------- /env_examples/gigachat/.docker.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/env_examples/gigachat/.docker.env.example -------------------------------------------------------------------------------- /env_examples/gigachat/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/env_examples/gigachat/.env.example -------------------------------------------------------------------------------- /env_examples/openai/.docker.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/env_examples/openai/.docker.env.example -------------------------------------------------------------------------------- /env_examples/openai/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/env_examples/openai/.env.example -------------------------------------------------------------------------------- /front/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/Dockerfile -------------------------------------------------------------------------------- /front/Makefile: -------------------------------------------------------------------------------- 1 | dev: 2 | npm run dev -------------------------------------------------------------------------------- /front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/index.html -------------------------------------------------------------------------------- /front/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/nginx.conf -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/package.json -------------------------------------------------------------------------------- /front/public/bust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/public/bust.svg -------------------------------------------------------------------------------- /front/public/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/public/food.svg -------------------------------------------------------------------------------- /front/public/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/public/hotel.svg -------------------------------------------------------------------------------- /front/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/public/index.html -------------------------------------------------------------------------------- /front/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/App.tsx -------------------------------------------------------------------------------- /front/src/assets/logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/assets/logo-mini.png -------------------------------------------------------------------------------- /front/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/assets/logo.png -------------------------------------------------------------------------------- /front/src/assets/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/assets/qr.png -------------------------------------------------------------------------------- /front/src/components/Attachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/Attachments.tsx -------------------------------------------------------------------------------- /front/src/components/AudioPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/AudioPlayer.tsx -------------------------------------------------------------------------------- /front/src/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/Chat.tsx -------------------------------------------------------------------------------- /front/src/components/ChatError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/ChatError.tsx -------------------------------------------------------------------------------- /front/src/components/DemoChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/DemoChat.tsx -------------------------------------------------------------------------------- /front/src/components/DemoItemEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/DemoItemEditor.tsx -------------------------------------------------------------------------------- /front/src/components/DemoSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/DemoSettings.tsx -------------------------------------------------------------------------------- /front/src/components/DemoToolBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/DemoToolBar.tsx -------------------------------------------------------------------------------- /front/src/components/GraphImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/GraphImage.tsx -------------------------------------------------------------------------------- /front/src/components/HTMLPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/HTMLPage.tsx -------------------------------------------------------------------------------- /front/src/components/InputArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/InputArea.tsx -------------------------------------------------------------------------------- /front/src/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/Message.tsx -------------------------------------------------------------------------------- /front/src/components/MessageAttachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/MessageAttachments.tsx -------------------------------------------------------------------------------- /front/src/components/MessageEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/MessageEditor.tsx -------------------------------------------------------------------------------- /front/src/components/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/MessageList.tsx -------------------------------------------------------------------------------- /front/src/components/OverlayPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/OverlayPortal.tsx -------------------------------------------------------------------------------- /front/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/Settings.tsx -------------------------------------------------------------------------------- /front/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /front/src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/Spinner.tsx -------------------------------------------------------------------------------- /front/src/components/ThinkingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/ThinkingIndicator.tsx -------------------------------------------------------------------------------- /front/src/components/ToolBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/ToolBar.tsx -------------------------------------------------------------------------------- /front/src/components/ToolMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/components/ToolMessage.tsx -------------------------------------------------------------------------------- /front/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/config.ts -------------------------------------------------------------------------------- /front/src/hooks/DemoItemsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/hooks/DemoItemsProvider.tsx -------------------------------------------------------------------------------- /front/src/hooks/SelectedAttachmentsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/hooks/SelectedAttachmentsContext.tsx -------------------------------------------------------------------------------- /front/src/hooks/useFileUploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/hooks/useFileUploads.ts -------------------------------------------------------------------------------- /front/src/hooks/useStableMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/hooks/useStableMessages.tsx -------------------------------------------------------------------------------- /front/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/index.tsx -------------------------------------------------------------------------------- /front/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/interfaces.ts -------------------------------------------------------------------------------- /front/src/styles/GlobalStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/src/styles/GlobalStyle.ts -------------------------------------------------------------------------------- /front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/tsconfig.json -------------------------------------------------------------------------------- /front/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/tsconfig.node.json -------------------------------------------------------------------------------- /front/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/giga_agent/HEAD/front/vite.config.ts --------------------------------------------------------------------------------