├── .github └── workflows │ └── stale-issues.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── README_JA.md ├── README_KO.md ├── README_ZH.md ├── backend ├── README.md ├── __init__.py ├── api │ ├── __init__.py │ ├── chat_copilot.py │ ├── chat_plugin.py │ ├── chat_webot.py │ ├── conversation.py │ ├── data_connector.py │ ├── data_tools.py │ ├── file.py │ ├── language_model.py │ ├── recommend.py │ ├── tool.py │ ├── webot_actions.py │ └── webot_instructions.py ├── app.py ├── display_streaming.py ├── kernel_publisher.py ├── main.py ├── memory.py ├── requirements.txt ├── schemas.py ├── setup_script.sh ├── static │ └── images │ │ ├── DataProfiling.cache │ │ ├── Echarts.cache │ │ ├── KaggleDataLoader.cache │ │ ├── PythonCodeBuilder.cache │ │ └── SQLQueryBuilder.cache └── utils │ ├── __init__.py │ ├── charts.py │ ├── running_time_storage.py │ ├── streaming.py │ ├── threading.py │ ├── user_conversation_storage.py │ └── utils.py ├── docker-compose.yml ├── frontend ├── Dockerfile ├── README.md ├── components │ ├── Actionbar │ │ └── TabContent │ │ │ ├── DraggableFolder.tsx │ │ │ └── DraggableTreeItem │ │ │ ├── App.module.css │ │ │ ├── CustomDragPreview.module.css │ │ │ ├── CustomDragPreview.tsx │ │ │ ├── CustomNode.module.css │ │ │ ├── CustomNode.tsx │ │ │ ├── DndWrapper.tsx │ │ │ ├── MultipleDragPreview.module.css │ │ │ ├── MultipleDragPreview.tsx │ │ │ ├── TypeIcon.tsx │ │ │ └── theme.tsx │ ├── Buttons │ │ └── SidebarActionButton │ │ │ ├── SidebarActionButton.tsx │ │ │ └── index.ts │ ├── Chat │ │ ├── AgentSelect.tsx │ │ ├── ApiKeyInput.tsx │ │ ├── Chat.tsx │ │ ├── ChatInput.tsx │ │ ├── ChatLoader.tsx │ │ ├── ChatMessage.tsx │ │ ├── ChatRichContentItem.tsx │ │ ├── CodeInterpreterPluginSelect.tsx │ │ ├── ErrorMessageDiv.tsx │ │ ├── PluginSelect.tsx │ │ ├── QuestionSuggestion.tsx │ │ ├── SettingsModal.tsx │ │ ├── Temperature.tsx │ │ └── ToolCollapse.tsx │ ├── Chatbar │ │ ├── Chatbar.context.tsx │ │ ├── Chatbar.state.tsx │ │ ├── Chatbar.tsx │ │ └── components │ │ │ ├── ChatFolders.tsx │ │ │ ├── ChatbarSettings.tsx │ │ │ ├── ClearConversations.tsx │ │ │ ├── Conversation.tsx │ │ │ └── Conversations.tsx │ ├── CodeModal │ │ ├── CodeModal.tsx │ │ └── index.ts │ ├── DataStore │ │ ├── DataConnectorButton │ │ │ ├── DataConnectorButton.tsx │ │ │ └── index.ts │ │ ├── KaggleConnector.tsx │ │ └── index.ts │ ├── Datatype │ │ ├── Chart │ │ │ └── Echart.tsx │ │ ├── List │ │ │ ├── KaggleDatasetList.module.css │ │ │ ├── KaggleDatasetList.tsx │ │ │ └── KaggleDatasetListItem.tsx │ │ └── Table │ │ │ └── XLangTable.tsx │ ├── Dialog │ │ └── Dialog.tsx │ ├── Folder │ │ ├── Folder.tsx │ │ └── index.ts │ ├── Markdown │ │ ├── CodeBlock.tsx │ │ └── MemoizedReactMarkdown.tsx │ ├── Mobile │ │ └── Navbar.tsx │ ├── Search │ │ ├── Search.tsx │ │ └── index.ts │ └── Sidebar │ │ ├── Sidebar.tsx │ │ ├── components │ │ └── OpenCloseButton.tsx │ │ └── index.ts ├── hooks │ ├── useCreateReducer.ts │ └── useMemoDeep.ts ├── icons │ ├── LogoIcon.tsx │ ├── RobotIcon.tsx │ ├── logo_black.svg │ ├── logo_color.svg │ └── logo_rect.svg ├── next-env.d.ts ├── next-i18next.config.js ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── home │ │ │ ├── home.context.tsx │ │ │ ├── home.state.tsx │ │ │ ├── home.tsx │ │ │ └── index.ts │ └── index.tsx ├── postcss.config.js ├── prettier.config.js ├── public │ ├── auto_icon_base64.ts │ ├── favicon.ico │ ├── fonts │ │ └── Montserrat-VariableFont_wght.ttf │ ├── locales │ │ ├── ar │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── bn │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── ca │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ └── sidebar.json │ │ ├── de │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── en │ │ │ └── common.json │ │ ├── es │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── fi │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── fr │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── he │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── id │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── it │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── ja │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── ko │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── pl │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── pt │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── ro │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── ru │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── si │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── sv │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── te │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ ├── tr │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ └── sidebar.json │ │ ├── vi │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ │ └── zh │ │ │ ├── chat.json │ │ │ ├── common.json │ │ │ ├── markdown.json │ │ │ ├── promptbar.json │ │ │ ├── settings.json │ │ │ └── sidebar.json │ ├── webot_icon_base64.ts │ └── xlang.ico ├── styles │ └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── types │ ├── agent.ts │ ├── chat.ts │ ├── data.ts │ ├── error.ts │ ├── files.ts │ ├── folder.ts │ ├── kaggle.ts │ ├── plugin.ts │ ├── profile.ts │ └── storage.ts ├── utils │ ├── app │ │ ├── api.ts │ │ ├── clean.ts │ │ ├── codeblock.ts │ │ ├── const.ts │ │ ├── conversation.ts │ │ ├── export.ts │ │ ├── folders.ts │ │ └── upload.ts │ └── data │ │ └── throttle.ts ├── vitest.config.ts └── webot_extension.zip ├── pics ├── amazon.svg ├── data_agent.png ├── data_agent_demo.png ├── google_research.svg ├── openagents_overview.png ├── plugins_agent.png ├── plugins_agent_demo.png ├── salesforce.webp ├── system_design.png ├── transparent.png ├── web_agent.png └── web_agent_demo.png └── real_agents ├── __init__.py ├── adapters ├── __init__.py ├── agent_helpers │ ├── __init__.py │ ├── agent.py │ ├── output_parser.py │ └── tools.py ├── callbacks │ ├── __init__.py │ ├── agent_streaming.py │ ├── base.py │ ├── executor_streaming.py │ ├── manager.py │ └── streaming_stdout.py ├── data_model │ ├── __init__.py │ ├── base.py │ ├── database.py │ ├── html.py │ ├── image.py │ ├── json.py │ ├── kaggle.py │ ├── message.py │ ├── plugin │ │ ├── __init__.py │ │ ├── base.py │ │ ├── biztoc │ │ │ ├── __init__.py │ │ │ └── search_news.py │ │ ├── newsapi │ │ │ ├── __init__.py │ │ │ └── everything.py │ │ ├── spec.py │ │ └── wanted_job_search │ │ │ ├── __init__.py │ │ │ └── search_global.py │ ├── table.py │ ├── templates │ │ ├── __init__.py │ │ └── skg_templates │ │ │ ├── __init__.py │ │ │ ├── database_templates.py │ │ │ ├── knowledge_graph_templates.py │ │ │ └── table_templates.py │ ├── text.py │ └── utils.py ├── executors │ ├── __init__.py │ ├── base.py │ ├── chat_executor.py │ └── question_suggestion │ │ ├── __init__.py │ │ ├── base.py │ │ ├── chat_memory.py │ │ ├── prompts.py │ │ ├── question_suggestion_executor.py │ │ └── user_profile.py ├── interactive_executor.py ├── llm.py ├── memory │ ├── __init__.py │ ├── buffer.py │ └── read_only_string_memory.py ├── models │ ├── __init__.py │ ├── anthropic.py │ ├── azure_openai.py │ ├── base.py │ └── openai.py └── schema.py ├── data_agent ├── .code_interpreter_docker_env ├── README.md ├── __init__.py ├── copilot.py ├── copilot_prompt.py ├── evaluation │ ├── __init__.py │ ├── python_evaluator.py │ └── sql_evaluator.py ├── executors │ ├── __init__.py │ ├── code_generation_executor.py │ ├── data_summary_executor.py │ └── kaggle_data_loading_executor.py ├── python │ ├── __init__.py │ ├── base.py │ ├── echarts_prompt.py │ ├── python_prompt.py │ └── system_prompt.py └── sql │ ├── __init__.py │ ├── base.py │ └── prompt.py ├── plugins_agent ├── README.md ├── __init__.py ├── api_calling │ ├── __init__.py │ ├── base.py │ ├── custom_exceptions.py │ └── prompt.py ├── executors │ ├── __init__.py │ └── plugin_executor.py ├── plugin.py ├── plugin_prompt.py └── plugins │ ├── ABCmouse │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── recommend_activities.py │ ├── Agones │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── chatgpt_results.py │ ├── Ai_PDF │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── summarize_pdf.py │ │ └── upload_and_search_pdf.py │ ├── Algorithma │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── action_get.py │ │ ├── commands_post.py │ │ ├── context_get.py │ │ ├── download_well_known.py │ │ ├── get_errors.py │ │ ├── get_examples.py │ │ ├── home.py │ │ ├── initialize.py │ │ ├── introduction.py │ │ ├── purpose_get.py │ │ ├── random.py │ │ ├── random_post.py │ │ └── start.py │ ├── ApexMap │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── apex_map_prediction.py │ │ └── ranked_map.py │ ├── AppyPieAIAppBuilder │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── text_to_app.py │ ├── ArtCollection │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── art_collection.py │ ├── AskTheCode │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── query_github_repository_file_contents.py │ │ └── query_github_repository_structure.py │ ├── Austrian_Bank_Rates │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── account_info.py │ │ ├── bank_info.py │ │ └── call.py │ ├── Avalara │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── sales_tax.py │ ├── BOXIL_SaaS │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── categories.py │ │ └── category_search.py │ ├── Bardeen │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── query_magic_box.py │ ├── Broadway │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── products.py │ ├── BubbleGoods │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_products.py │ ├── ByByAI │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_products.py │ ├── C3_Glide │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── open_ai_plugin.py │ ├── CTCP │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_trial.py │ ├── ChatOCR │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── feedback.py │ │ └── upload_url.py │ ├── ChatWithGit │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── query_git.py │ ├── CheckTheChain │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── datasets.py │ │ ├── get_table_schema.py │ │ ├── get_tables.py │ │ ├── query_bigquery.py │ │ └── resolve_eth_address_or_ens.py │ ├── CloudDiagramGen │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── generate_diagram.py │ ├── Coupert │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── getStore.py │ ├── Coursera │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search.py │ ├── CranePumpsManuals │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_cat_manual.py │ ├── CreatuityStores │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── product_list.py │ │ └── stores.py │ ├── CribbageScorer │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── score_hand_show.py │ ├── Diagrams │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── render_diagram.py │ ├── Dr_Thoths_Tarot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── career.py │ │ ├── celtic_cross_prompt.py │ │ ├── chakra.py │ │ ├── drawcard.py │ │ ├── favicon.py │ │ ├── horseshoe.py │ │ ├── occult_card.py │ │ ├── pastpresentfuture.py │ │ ├── relationship.py │ │ ├── three_card_spread.py │ │ └── yesno_prompt.py │ ├── DreamInterpreter │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── ai_plugin.py │ │ ├── data.py │ │ ├── dream_interpreter.py │ │ ├── logo.py │ │ ├── main_page.py │ │ ├── openapi.py │ │ └── terms_of_use.py │ ├── EasyProductSearch │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── search_items.py │ │ └── travel_search.py │ ├── Ferryhopper │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_destination.py │ │ └── get_ferries.py │ ├── Figlet │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── ascii_art.py │ │ └── list_fonts.py │ ├── GameSight │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── search_game_related_content.py │ │ └── search_games.py │ ├── Gate2AI │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── ai_tools_search.py │ ├── GifApi │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── healthcheck.py │ │ ├── search.py │ │ └── trending.py │ ├── Google_Ads_Shopping_Microsoft_Ads_pay_per_click │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── ppc_assistance.py │ ├── ImageSearch │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── fetchImage.py │ ├── IndoorPlants │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_context.py │ ├── IsotonixProducts │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── isotonix_search.py │ ├── JobInterview │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── job_data_retrieval.py │ │ ├── submit_answer.py │ │ └── submit_summary.py │ ├── LGTM │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── lgtm.py │ ├── MemeGenerator │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── generate_meme.py │ ├── MixerBox_News │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── latest_news.py │ ├── MixerBox_OnePlayer_music │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_playlists.py │ │ ├── get_podcasts_by_category.py │ │ ├── search_music.py │ │ └── search_podcast.py │ ├── MixerBox_Podcasts │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── episodes_by_category.py │ │ ├── get_episodes_by_podcast.py │ │ ├── get_podcasts_by_category.py │ │ ├── popular_episodes.py │ │ ├── popular_podcasts.py │ │ └── searchPodcast.py │ ├── MixerBox_Weather │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_weather_info.py │ ├── MyWritingCompanion │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── find_writers.py │ ├── Netlify │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── deploy.py │ ├── Now │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_trends.py │ │ └── search_tweets.py │ ├── Outschool │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_classes.py │ │ └── search_teachers.py │ ├── Paraphraser │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── paraphraser.py │ ├── PluginRandomCreatureGeneration │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── create_creature.py │ ├── Pluginpedia │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── plugins.py │ ├── PortfoliosLab │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── symbol_info.py │ ├── PrimeLoupe │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── chrome.py │ │ ├── get_full_url.py │ │ ├── get_summary.py │ │ ├── index.py │ │ ├── privacy.py │ │ └── terms.py │ ├── Puzzle_Constructor │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── generate_crossword.py │ ├── QASMShor │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── about_us.py │ │ ├── get_queue_status.py │ │ └── queue_in_QASM_generation_task.py │ ├── QyrusTestPilot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── execute_test.py │ │ ├── generate_scenarios.py │ │ ├── get_execution_status.py │ │ ├── get_scenarios.py │ │ └── get_steps.py │ ├── RecombinantAI │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_file_content.py │ │ ├── get_repo_files.py │ │ ├── get_status_messages.py │ │ ├── list_branches.py │ │ ├── plugin_logo.py │ │ └── root.py │ ├── ResumeCopilot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── create_resume_link.py │ │ ├── get_uploaded_resume.py │ │ └── upload_modified_resume.py │ ├── RoboAd │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── analyze_url.py │ │ └── create_ads.py │ ├── Roshi │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── create_lesson.py │ ├── ScholarlyInsight │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_arxiv.py │ ├── Sentence_Beasts │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── create_monster.py │ │ ├── record_match.py │ │ └── summon_monster.py │ ├── ShopMate │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_product.py │ ├── Singapore_Places_Of_Interest │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── display_map.py │ │ ├── experiential_route.py │ │ ├── search_database.py │ │ └── search_map.py │ ├── Spirify_model_qrcode │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── generate_qr_code.py │ │ ├── legal_info.py │ │ └── puzzle_qr_code.py │ ├── StockData │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── stock_info.py │ ├── SuperchargeMyEV │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── check_available_planned_tesla_vehicle_supercharger_stations.py │ │ ├── check_available_tesla_superchargers_exclusive_to_tesla_evs.py │ │ ├── check_available_tesla_superchargers_open_to_non_tesla_evs.py │ │ ├── check_total_available_non_tesla_vehicle_supercharger_stats.py │ │ ├── get_non_tesla_provider_charging_stations.py │ │ ├── get_tesla_destination_charger_locations.py │ │ └── supercharger_faq.py │ ├── Supercharger │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── chat_with_manual.py │ │ ├── local_superchargers.py │ │ └── suggested_superchargers.py │ ├── Tabor │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── prompt.py │ ├── Tagvenue_top_venues_for_hire_in_UK_and_beyond │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── tagvenue_search.py │ ├── TalentOrg │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── talent_search.py │ ├── Talkface_IELTS_Prep │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_ielts_topic_pt1.py │ │ └── get_ielts_topic_pt2.py │ ├── Tax_Calculator │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── sales_tax.py │ ├── TechPulse │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── fetch_ask_stories.py │ │ ├── fetch_new_stories.py │ │ ├── jobstories.py │ │ ├── show_stories.py │ │ └── topstories.py │ ├── The_Diet_Search │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── query_main.py │ ├── TicTacToe │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── play_tictactoe.py │ ├── TokenInsights │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── coin_price.py │ │ └── get_coin_news.py │ ├── TrySpree │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_samples.py │ ├── Video_summary │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_youtube_transcript.py │ ├── Weather │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── weather_forecast.py │ │ └── weather_now.py │ ├── WeatherWizard │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── weather.py │ ├── Weather_Forecast │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── weather_by_location.py │ ├── Weather_and_Train_and_in_Korea │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_legal.py │ │ ├── logo_image.py │ │ ├── shortcut.py │ │ ├── subway_location.py │ │ ├── subway_route.py │ │ ├── weather_forecast.py │ │ └── weather_now.py │ ├── WebRewind │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_wayback_url.py │ ├── WordCloud │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── wordcloud.py │ ├── XWeather │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_radar.py │ │ ├── weather_forecast.py │ │ └── weather_summary.py │ ├── Xpapers_arXiv_paper_database │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── legal.py │ │ ├── search_by_id.py │ │ ├── search_papers.py │ │ ├── search_papers_by_date.py │ │ └── search_papers_with_pdf.py │ ├── __init__.py │ ├── access_link │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── parse_url.py │ ├── access_pdf │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── parse_url.py │ ├── acquire │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── search_startups.py │ │ └── show_startup_info.py │ ├── aiAgents │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── ai_agent.py │ ├── ai_council │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── ask_question.py │ ├── alagaAI │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_knowledge_base.py │ ├── aldenbot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── query_get_context.py │ ├── alpha_vantage │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search.py │ ├── api_nba │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── leagues.py │ │ ├── players.py │ │ ├── seasons.py │ │ └── teams.py │ ├── ask_my_first_million_podcast_chatbot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── podcast_chatbot.py │ ├── askyourpdf │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── download_pdf.py │ │ └── perform_query.py │ ├── balldontlie │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── games.py │ │ ├── players.py │ │ ├── stats.py │ │ └── teams.py │ ├── bart_realtime │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── bart_realtime.py │ ├── bibliography_crossref │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── add_bibtex_to_zotero.py │ │ ├── crossref_items_to_dois.py │ │ ├── freetext_to_bibtex.py │ │ └── freetext_to_crossref_items.py │ ├── biztoc │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_news.py │ ├── boolio │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── custom_index_screen.py │ │ ├── search_factor.py │ │ ├── search_sector.py │ │ └── stock_summary.py │ ├── calculator │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── execute_formula.py │ ├── career_test │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── job_info.py │ ├── chabadCenters │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── chabad_center_events.py │ │ ├── chabad_centers_by_zipcode.py │ │ ├── get_center_info.py │ │ ├── list_all_centers.py │ │ ├── list_center_types.py │ │ └── search_centers.py │ ├── champdex │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_champion_info.py │ ├── charity │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── charity_info.py │ │ └── charity_list.py │ ├── chicago_data_portal │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── business_categories.py │ │ ├── department_contracts.py │ │ ├── find_murals.py │ │ ├── largest_contracts.py │ │ ├── new_businesses.py │ │ └── recently_completed_service_requests.py │ ├── coincap │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_asset_by_id.py │ │ └── get_assets.py │ ├── companieshouse │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── fetchFilingHistory.py │ │ ├── fetchOfficers.py │ │ ├── fetch_charges.py │ │ ├── fetch_company_data.py │ │ ├── fetch_insolvency.py │ │ └── search_companies.py │ ├── competitorppcads │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_optimized_ad_history.py │ ├── converter_app │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── convert_currency.py │ │ ├── convert_files.py │ │ ├── converter_list.py │ │ ├── currency_exchange_chart.py │ │ ├── get_symbols.py │ │ ├── handle_pdf.py │ │ ├── summarize.py │ │ └── totext.py │ ├── copilot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── logo.py │ │ ├── models_by_make_and_year.py │ │ ├── vehicles_for_sale.py │ │ └── year_make_model.py │ ├── crafty_clues │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── new_word.py │ ├── create_qr_code │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── create_qr.py │ ├── creativemind │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── generate_image.py │ ├── cryptoPriceAndNews │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── crypto_news.py │ │ ├── get_coin_list.py │ │ └── get_coin_price.py │ ├── crypto_price_checker │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── check_price.py │ ├── cryptomation │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── account_balance.py │ │ └── validation.py │ ├── cryptopulse │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── crypto_news.py │ ├── currency_today │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── currency_converter.py │ ├── currencyconverter │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── convert_currency.py │ ├── customplugin │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_context.py │ ├── datasette │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── content.py │ ├── deepmemory │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── flashcards_conversion.py │ ├── dfa │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── check_domains_availability.py │ ├── diceroller │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── help.py │ │ ├── legal_page.py │ │ └── roll_dice.py │ ├── domains │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── domain_search.py │ ├── earthImagesAndVisualizations │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── generate_map.py │ │ ├── get_coordinates.py │ │ └── map_from_location.py │ ├── exchangerates │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── convert_currency.py │ │ ├── fluctuation.py │ │ ├── get_currencies.py │ │ ├── historical_rate.py │ │ ├── realtime_rate.py │ │ └── timeseries.py │ ├── factcheck │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_verified_facts.py │ ├── find_agency │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_companies.py │ ├── find_stock_ideas │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── stock_ideas.py │ ├── find_teachers │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── find_teachers.py │ ├── findafreelancer │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── find_freelancers.py │ ├── findagift │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── generate_search_urls.py │ │ ├── gift_interview.py │ │ ├── logo.py │ │ ├── openapi_spec.py │ │ └── read_root_legal.py │ ├── finnabolag │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── company_data.py │ │ └── search_company.py │ ├── fiscalnote │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_calendar_for_date_white_house_calendar__date__get.py │ │ ├── list_biden_remarks.py │ │ ├── read_root.py │ │ └── search_articles_roll_call_articles__get.py │ ├── form │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── create_form.py │ ├── formgenerator │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── generate_form.py │ ├── fundsdbsearch │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── fundsdb_search.py │ ├── game_info_fetcher │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── games.py │ │ ├── url_result.py │ │ └── youtube_search.py │ ├── getyourguide_activity_search │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_activities.py │ ├── gitUserRepoStats │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── github_repo.py │ │ └── github_user.py │ ├── google_search │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search.py │ ├── got2go_plugin_v1 │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── ai_search.py │ ├── hackit_web_scanner │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── web_scanner.py │ ├── hadith │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── hadiths.py │ ├── hdbcarpark │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── car_park_info.py │ │ └── get_hdb_carparks_availability.py │ ├── highPerplexity │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_search.py │ ├── indoorplantbot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_context.py │ ├── italy_latest_news │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── latest_news.py │ ├── jini │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── query.py │ ├── jobsearch │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── jobs.py │ ├── jopilot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search.py │ ├── keywordexplorer │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── related_keywords.py │ ├── klarna │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── products.py │ ├── konkanitranslator │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_context.py │ ├── korea_subway │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── search_routes.py │ │ └── stations.py │ ├── kraftful │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_data.py │ ├── litmaps │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── fetch_articles.py │ │ ├── get_article_by_id.py │ │ ├── healthCheck.py │ │ └── keyword_search.py │ ├── local │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── ai_plugin.py │ │ ├── business_search.py │ │ ├── categories.py │ │ ├── logo_png.py │ │ └── openapi_yaml.py │ ├── locate_inventory_for_electronic_components │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── locate_inventory_chat_plugin_locate_locate_post.py │ ├── lsongai │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── bilibili_subtitle.py │ │ ├── douyin_user_info.py │ │ ├── get_DouyinVideos.py │ │ ├── get_new_stories.py │ │ ├── get_top_stories.py │ │ ├── get_video_info.py │ │ ├── get_weather_today.py │ │ ├── github_repos.py │ │ ├── huobi_kline.py │ │ ├── ikea_recommend.py │ │ ├── music_lyric.py │ │ ├── music_search.py │ │ ├── recently_movies.py │ │ ├── search_podcasts.py │ │ ├── top_questions.py │ │ ├── uniqlo_stylingbook.py │ │ ├── v2ex_latest.py │ │ ├── v2ex_trending.py │ │ ├── weibo_trending.py │ │ ├── youdao_fanyi.py │ │ ├── youtube_user.py │ │ ├── youtube_video.py │ │ └── zhihu_trending.py │ ├── magi_codex │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── ai_plugin.py │ │ ├── get_booster.py │ │ ├── get_fuzzy_card_name.py │ │ ├── get_logo.py │ │ ├── query_cards.py │ │ ├── query_rules.py │ │ └── random_card.py │ ├── maps │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── generate_map.py │ ├── mediaready │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── find_diverse_sources.py │ │ └── recent_papers.py │ ├── message_in_a_bottle │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_message.py │ │ ├── keep_message.py │ │ ├── send_message.py │ │ └── update_message.py │ ├── metar │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_metar.py │ ├── nasaMediaExplorer │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_asset_manifest.py │ │ └── search_media.py │ ├── nba_stats │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── basketball_stats.py │ ├── newsapi │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── everything.py │ ├── nextpaper │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── fetch_paper.py │ ├── nonprofits │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_nonprofit.py │ │ └── get_nonprofits.py │ ├── omdb │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search.py │ ├── open_meteo │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── forecast.py │ ├── photorealistic │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── photorealistic_prompt_generator.py │ ├── plugin_names.py │ ├── podcastSearch │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── podcasts_search.py │ ├── pollthepeople │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_context.py │ ├── polygon │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── aggs_ticker_forexTicker_range_multiplier_timespan_from_to.py │ │ └── aggs_ticker_stocksTicker_range_multiplier_timespan_from_to.py │ ├── property_search │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── property_search.py │ ├── ptcg_price_research │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── pokemon_card_price.py │ ├── qreator │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── qr_generator.py │ ├── questmate │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── create_quest_from_prompt.py │ ├── rephrase │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── rephrase_prompt.py │ ├── repo_radar │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_readme_by_owner_and_repo.py │ │ ├── search_for_repo.py │ │ └── search_for_repo_by_topic.py │ ├── resume │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── create_resume.py │ ├── savvy_trader_ai │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_assets_info.py │ │ ├── get_quotes.py │ │ └── summaries.py │ ├── scholarai │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── fulltext.py │ │ ├── save_citation.py │ │ └── search_abstracts.py │ ├── search │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_courses.py │ ├── seo_assistant │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── generated_keyword_suggestion.py │ ├── shimmer_daily │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── daily_deals.py │ ├── shopbest │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_best_seller_product.py │ ├── show_me │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── diagram_guidelines.py │ │ ├── render_diagram.py │ │ └── show_carousel.py │ ├── skyscanner │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── create.py │ ├── speak │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── explain_phrase.py │ │ ├── explain_task.py │ │ └── translate.py │ ├── speedy_marketing │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── generate_blog_post.py │ ├── spotify │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search.py │ ├── statisfinapp │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── bollinger_bands.py │ │ ├── get_data.py │ │ ├── get_volume.py │ │ ├── moving_average.py │ │ ├── price_change.py │ │ ├── rsi.py │ │ └── volatility.py │ ├── strology │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── astrology_prediction.py │ ├── surge_ai_trends │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_profile.py │ │ ├── profile_search.py │ │ └── trends_search.py │ ├── themeparkhipster │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_parks.py │ │ └── queue_times.py │ ├── timemachine │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── now__get.py │ ├── tombradybot │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_context.py │ ├── tool_selector.py │ ├── tophap │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── property_details.py │ │ ├── property_details_by_address.py │ │ ├── public_search.py │ │ └── zone_stats.py │ ├── tradersinsight │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── bitcoin.py │ │ └── stocks.py │ ├── travelActivityHotel │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── klook_search.py │ ├── trending_music │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── artist_info.py │ │ ├── get_trending_music_manifest.py │ │ ├── similar_songs.py │ │ ├── song_info.py │ │ ├── top_songs.py │ │ ├── top_songs_country.py │ │ ├── top_songs_country_genre.py │ │ └── trending_music_top_songs_genre.py │ ├── twelve_data │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── exchanges.py │ │ ├── forex_pairs.py │ │ ├── stocks.py │ │ └── symbol_search.py │ ├── uberchord │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── chord_diagram.py │ ├── utils.py │ ├── video_highlight │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_transcript.py │ ├── video_insights │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── full_transcript.py │ │ ├── get_full_transcript_youtube.py │ │ ├── get_video_summary_unknown.py │ │ └── get_video_summary_youtube.py │ ├── wahi │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_listings.py │ ├── wanted_job_search │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search_global.py │ ├── web5 │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── communication_help.py │ │ ├── did_description.py │ │ ├── dwn_delete_help.py │ │ ├── dwn_description.py │ │ ├── dwn_read.py │ │ ├── dwn_write_help.py │ │ ├── help_browser.py │ │ ├── help_did.py │ │ ├── help_protocol.py │ │ ├── help_setup.py │ │ ├── help_store.py │ │ ├── help_sync.py │ │ ├── protocol_description.py │ │ ├── query_full.py │ │ ├── query_help.py │ │ ├── quickstart.py │ │ ├── todo_app_helper.py │ │ ├── update_to_web5.py │ │ └── write_send_help.py │ ├── web_requests │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── scrape_url.py │ ├── web_scraper │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── scraper.py │ ├── what_to_watch │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── get_show_details.py │ │ ├── get_show_streaming_info_by_country.py │ │ ├── search_shows.py │ │ └── show_recommendations.py │ ├── whois_domain_checker │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── check_domains.py │ ├── wishbucket │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search.py │ ├── wolfram │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ ├── cloud_plugin.py │ │ ├── llm_api.py │ │ ├── query.py │ │ ├── result.py │ │ └── spoken.py │ ├── word_and_character_count │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── text_count.py │ ├── word_sneak │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── get_secret_words.py │ ├── youtube │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ └── paths │ │ ├── __init__.py │ │ └── search.py │ └── zapier │ ├── __init__.py │ ├── ai-plugin.json │ ├── openapi.yaml │ ├── paths │ ├── __init__.py │ ├── configuration_link.py │ ├── execution_log.py │ ├── exposed.py │ ├── preview_a_zap.py │ └── search_actions.py │ └── personnel.py └── web_agent ├── README.md ├── __init__.py ├── executors ├── __init__.py ├── web_browsing_executor.py └── webot_executor.py ├── web_browsing ├── __init__.py ├── base.py ├── end2end │ ├── __init__.py │ ├── base.py │ └── prompt.py ├── prompt.py ├── react │ ├── __init__.py │ ├── base.py │ └── prompt.py └── schema.py ├── webot.py └── webot_prompt.py /.github/workflows/stale-issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/.github/workflows/stale-issues.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/README.md -------------------------------------------------------------------------------- /README_JA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/README_JA.md -------------------------------------------------------------------------------- /README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/README_KO.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/README_ZH.md -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/__init__.py -------------------------------------------------------------------------------- /backend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/chat_copilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/chat_copilot.py -------------------------------------------------------------------------------- /backend/api/chat_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/chat_plugin.py -------------------------------------------------------------------------------- /backend/api/chat_webot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/chat_webot.py -------------------------------------------------------------------------------- /backend/api/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/conversation.py -------------------------------------------------------------------------------- /backend/api/data_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/data_connector.py -------------------------------------------------------------------------------- /backend/api/data_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/data_tools.py -------------------------------------------------------------------------------- /backend/api/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/file.py -------------------------------------------------------------------------------- /backend/api/language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/language_model.py -------------------------------------------------------------------------------- /backend/api/recommend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/recommend.py -------------------------------------------------------------------------------- /backend/api/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/tool.py -------------------------------------------------------------------------------- /backend/api/webot_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/webot_actions.py -------------------------------------------------------------------------------- /backend/api/webot_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/api/webot_instructions.py -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/display_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/display_streaming.py -------------------------------------------------------------------------------- /backend/kernel_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/kernel_publisher.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/memory.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/schemas.py -------------------------------------------------------------------------------- /backend/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/setup_script.sh -------------------------------------------------------------------------------- /backend/static/images/DataProfiling.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/static/images/DataProfiling.cache -------------------------------------------------------------------------------- /backend/static/images/Echarts.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/static/images/Echarts.cache -------------------------------------------------------------------------------- /backend/static/images/KaggleDataLoader.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/static/images/KaggleDataLoader.cache -------------------------------------------------------------------------------- /backend/static/images/PythonCodeBuilder.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/static/images/PythonCodeBuilder.cache -------------------------------------------------------------------------------- /backend/static/images/SQLQueryBuilder.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/static/images/SQLQueryBuilder.cache -------------------------------------------------------------------------------- /backend/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/utils/charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/utils/charts.py -------------------------------------------------------------------------------- /backend/utils/running_time_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/utils/running_time_storage.py -------------------------------------------------------------------------------- /backend/utils/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/utils/streaming.py -------------------------------------------------------------------------------- /backend/utils/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/utils/threading.py -------------------------------------------------------------------------------- /backend/utils/user_conversation_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/utils/user_conversation_storage.py -------------------------------------------------------------------------------- /backend/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/backend/utils/utils.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/components/Buttons/SidebarActionButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SidebarActionButton'; 2 | -------------------------------------------------------------------------------- /frontend/components/Chat/AgentSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/AgentSelect.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/ApiKeyInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/ApiKeyInput.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/Chat.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/ChatInput.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/ChatLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/ChatLoader.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/ChatMessage.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/ChatRichContentItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/ChatRichContentItem.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/CodeInterpreterPluginSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/CodeInterpreterPluginSelect.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/ErrorMessageDiv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/ErrorMessageDiv.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/PluginSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/PluginSelect.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/QuestionSuggestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/QuestionSuggestion.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/SettingsModal.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/Temperature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/Temperature.tsx -------------------------------------------------------------------------------- /frontend/components/Chat/ToolCollapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chat/ToolCollapse.tsx -------------------------------------------------------------------------------- /frontend/components/Chatbar/Chatbar.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chatbar/Chatbar.context.tsx -------------------------------------------------------------------------------- /frontend/components/Chatbar/Chatbar.state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chatbar/Chatbar.state.tsx -------------------------------------------------------------------------------- /frontend/components/Chatbar/Chatbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chatbar/Chatbar.tsx -------------------------------------------------------------------------------- /frontend/components/Chatbar/components/ChatFolders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chatbar/components/ChatFolders.tsx -------------------------------------------------------------------------------- /frontend/components/Chatbar/components/ChatbarSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chatbar/components/ChatbarSettings.tsx -------------------------------------------------------------------------------- /frontend/components/Chatbar/components/Conversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chatbar/components/Conversation.tsx -------------------------------------------------------------------------------- /frontend/components/Chatbar/components/Conversations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Chatbar/components/Conversations.tsx -------------------------------------------------------------------------------- /frontend/components/CodeModal/CodeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/CodeModal/CodeModal.tsx -------------------------------------------------------------------------------- /frontend/components/CodeModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CodeModal'; 2 | -------------------------------------------------------------------------------- /frontend/components/DataStore/DataConnectorButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DataConnectorButton'; 2 | -------------------------------------------------------------------------------- /frontend/components/DataStore/KaggleConnector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/DataStore/KaggleConnector.tsx -------------------------------------------------------------------------------- /frontend/components/DataStore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/DataStore/index.ts -------------------------------------------------------------------------------- /frontend/components/Datatype/Chart/Echart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Datatype/Chart/Echart.tsx -------------------------------------------------------------------------------- /frontend/components/Datatype/List/KaggleDatasetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Datatype/List/KaggleDatasetList.tsx -------------------------------------------------------------------------------- /frontend/components/Datatype/List/KaggleDatasetListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Datatype/List/KaggleDatasetListItem.tsx -------------------------------------------------------------------------------- /frontend/components/Datatype/Table/XLangTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Datatype/Table/XLangTable.tsx -------------------------------------------------------------------------------- /frontend/components/Dialog/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Dialog/Dialog.tsx -------------------------------------------------------------------------------- /frontend/components/Folder/Folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Folder/Folder.tsx -------------------------------------------------------------------------------- /frontend/components/Folder/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Folder'; 2 | -------------------------------------------------------------------------------- /frontend/components/Markdown/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Markdown/CodeBlock.tsx -------------------------------------------------------------------------------- /frontend/components/Markdown/MemoizedReactMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Markdown/MemoizedReactMarkdown.tsx -------------------------------------------------------------------------------- /frontend/components/Mobile/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Mobile/Navbar.tsx -------------------------------------------------------------------------------- /frontend/components/Search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Search/Search.tsx -------------------------------------------------------------------------------- /frontend/components/Search/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Search'; 2 | -------------------------------------------------------------------------------- /frontend/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /frontend/components/Sidebar/components/OpenCloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/components/Sidebar/components/OpenCloseButton.tsx -------------------------------------------------------------------------------- /frontend/components/Sidebar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Sidebar'; 2 | -------------------------------------------------------------------------------- /frontend/hooks/useCreateReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/hooks/useCreateReducer.ts -------------------------------------------------------------------------------- /frontend/hooks/useMemoDeep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/hooks/useMemoDeep.ts -------------------------------------------------------------------------------- /frontend/icons/LogoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/icons/LogoIcon.tsx -------------------------------------------------------------------------------- /frontend/icons/RobotIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/icons/RobotIcon.tsx -------------------------------------------------------------------------------- /frontend/icons/logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/icons/logo_black.svg -------------------------------------------------------------------------------- /frontend/icons/logo_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/icons/logo_color.svg -------------------------------------------------------------------------------- /frontend/icons/logo_rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/icons/logo_rect.svg -------------------------------------------------------------------------------- /frontend/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/next-env.d.ts -------------------------------------------------------------------------------- /frontend/next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/next-i18next.config.js -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/pages/_app.tsx -------------------------------------------------------------------------------- /frontend/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/pages/_document.tsx -------------------------------------------------------------------------------- /frontend/pages/api/home/home.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/pages/api/home/home.context.tsx -------------------------------------------------------------------------------- /frontend/pages/api/home/home.state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/pages/api/home/home.state.tsx -------------------------------------------------------------------------------- /frontend/pages/api/home/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/pages/api/home/home.tsx -------------------------------------------------------------------------------- /frontend/pages/api/home/index.ts: -------------------------------------------------------------------------------- 1 | export { default, getServerSideProps } from './home'; 2 | -------------------------------------------------------------------------------- /frontend/pages/index.tsx: -------------------------------------------------------------------------------- 1 | export { default, getServerSideProps } from './api/home'; 2 | -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/prettier.config.js -------------------------------------------------------------------------------- /frontend/public/auto_icon_base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/auto_icon_base64.ts -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/fonts/Montserrat-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/fonts/Montserrat-VariableFont_wght.ttf -------------------------------------------------------------------------------- /frontend/public/locales/ar/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ar/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/ar/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/ar/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ar/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/ar/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ar/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/ar/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ar/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/ar/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ar/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/bn/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/bn/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/bn/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/bn/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/bn/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/bn/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/bn/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/bn/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/bn/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/bn/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/bn/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/ca/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ca/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/ca/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/ca/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ca/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/ca/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ca/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/ca/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ca/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/de/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/de/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/de/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/de/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/de/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/de/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/de/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/de/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/de/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/de/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/de/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/en/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/es/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/es/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/es/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/es/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/es/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/es/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/es/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/es/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/es/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/es/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/es/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/fi/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fi/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/fi/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/fi/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fi/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/fi/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fi/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/fi/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fi/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/fi/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fi/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/fr/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fr/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/fr/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/fr/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fr/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/fr/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fr/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/fr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fr/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/fr/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/fr/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/he/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/he/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/he/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/he/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/he/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/he/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/he/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/he/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/he/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/he/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/he/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/id/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/id/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/id/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/id/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/id/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/id/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/id/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/id/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/id/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/id/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/id/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/it/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/it/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/it/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/it/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/it/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/it/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/it/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/it/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/it/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/it/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/it/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/ja/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ja/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/ja/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/ja/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ja/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/ja/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ja/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/ja/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ja/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/ja/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ja/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/ko/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ko/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/ko/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/ko/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ko/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/ko/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ko/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/ko/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ko/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/ko/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ko/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/pl/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pl/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/pl/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/pl/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pl/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/pl/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pl/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/pl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pl/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/pl/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pl/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/pt/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pt/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/pt/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/pt/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pt/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/pt/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pt/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/pt/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pt/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/pt/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/pt/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/ro/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ro/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/ro/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/ro/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ro/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/ro/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ro/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/ro/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ro/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/ro/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ro/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/ru/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ru/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/ru/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/ru/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ru/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/ru/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ru/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/ru/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ru/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/ru/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/ru/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/si/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/si/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/si/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/si/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/si/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/si/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/si/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/si/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/si/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/si/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/si/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/sv/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/sv/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/sv/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/sv/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/sv/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/sv/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/sv/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/sv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/sv/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/sv/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/sv/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/te/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/te/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/te/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/te/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/te/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/te/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/te/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/te/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/te/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/te/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/te/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/tr/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/tr/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/tr/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/tr/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/tr/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/tr/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/tr/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/tr/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/tr/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/vi/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/vi/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/vi/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/vi/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/vi/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/vi/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/vi/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/vi/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/vi/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/vi/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/vi/sidebar.json -------------------------------------------------------------------------------- /frontend/public/locales/zh/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/zh/chat.json -------------------------------------------------------------------------------- /frontend/public/locales/zh/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/public/locales/zh/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/zh/markdown.json -------------------------------------------------------------------------------- /frontend/public/locales/zh/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/zh/promptbar.json -------------------------------------------------------------------------------- /frontend/public/locales/zh/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/zh/settings.json -------------------------------------------------------------------------------- /frontend/public/locales/zh/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/locales/zh/sidebar.json -------------------------------------------------------------------------------- /frontend/public/webot_icon_base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/webot_icon_base64.ts -------------------------------------------------------------------------------- /frontend/public/xlang.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/public/xlang.ico -------------------------------------------------------------------------------- /frontend/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/styles/globals.css -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/types/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/agent.ts -------------------------------------------------------------------------------- /frontend/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/chat.ts -------------------------------------------------------------------------------- /frontend/types/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/data.ts -------------------------------------------------------------------------------- /frontend/types/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/error.ts -------------------------------------------------------------------------------- /frontend/types/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/files.ts -------------------------------------------------------------------------------- /frontend/types/folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/folder.ts -------------------------------------------------------------------------------- /frontend/types/kaggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/kaggle.ts -------------------------------------------------------------------------------- /frontend/types/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/plugin.ts -------------------------------------------------------------------------------- /frontend/types/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/profile.ts -------------------------------------------------------------------------------- /frontend/types/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/types/storage.ts -------------------------------------------------------------------------------- /frontend/utils/app/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/app/api.ts -------------------------------------------------------------------------------- /frontend/utils/app/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/app/clean.ts -------------------------------------------------------------------------------- /frontend/utils/app/codeblock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/app/codeblock.ts -------------------------------------------------------------------------------- /frontend/utils/app/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/app/const.ts -------------------------------------------------------------------------------- /frontend/utils/app/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/app/conversation.ts -------------------------------------------------------------------------------- /frontend/utils/app/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/app/export.ts -------------------------------------------------------------------------------- /frontend/utils/app/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/app/folders.ts -------------------------------------------------------------------------------- /frontend/utils/app/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/app/upload.ts -------------------------------------------------------------------------------- /frontend/utils/data/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/utils/data/throttle.ts -------------------------------------------------------------------------------- /frontend/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/vitest.config.ts -------------------------------------------------------------------------------- /frontend/webot_extension.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/frontend/webot_extension.zip -------------------------------------------------------------------------------- /pics/amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/amazon.svg -------------------------------------------------------------------------------- /pics/data_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/data_agent.png -------------------------------------------------------------------------------- /pics/data_agent_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/data_agent_demo.png -------------------------------------------------------------------------------- /pics/google_research.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/google_research.svg -------------------------------------------------------------------------------- /pics/openagents_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/openagents_overview.png -------------------------------------------------------------------------------- /pics/plugins_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/plugins_agent.png -------------------------------------------------------------------------------- /pics/plugins_agent_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/plugins_agent_demo.png -------------------------------------------------------------------------------- /pics/salesforce.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/salesforce.webp -------------------------------------------------------------------------------- /pics/system_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/system_design.png -------------------------------------------------------------------------------- /pics/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/transparent.png -------------------------------------------------------------------------------- /pics/web_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/web_agent.png -------------------------------------------------------------------------------- /pics/web_agent_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/pics/web_agent_demo.png -------------------------------------------------------------------------------- /real_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/adapters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/adapters/agent_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/agent_helpers/__init__.py -------------------------------------------------------------------------------- /real_agents/adapters/agent_helpers/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/agent_helpers/agent.py -------------------------------------------------------------------------------- /real_agents/adapters/agent_helpers/output_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/agent_helpers/output_parser.py -------------------------------------------------------------------------------- /real_agents/adapters/agent_helpers/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/agent_helpers/tools.py -------------------------------------------------------------------------------- /real_agents/adapters/callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/callbacks/__init__.py -------------------------------------------------------------------------------- /real_agents/adapters/callbacks/agent_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/callbacks/agent_streaming.py -------------------------------------------------------------------------------- /real_agents/adapters/callbacks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/callbacks/base.py -------------------------------------------------------------------------------- /real_agents/adapters/callbacks/executor_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/callbacks/executor_streaming.py -------------------------------------------------------------------------------- /real_agents/adapters/callbacks/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/callbacks/manager.py -------------------------------------------------------------------------------- /real_agents/adapters/callbacks/streaming_stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/callbacks/streaming_stdout.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/__init__.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/base.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/database.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/html.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/image.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/json.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/kaggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/kaggle.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/message.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/plugin/__init__.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/plugin/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/plugin/base.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/plugin/biztoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/adapters/data_model/plugin/newsapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/adapters/data_model/plugin/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/plugin/spec.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/plugin/wanted_job_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/adapters/data_model/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/table.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/adapters/data_model/templates/skg_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/adapters/data_model/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/text.py -------------------------------------------------------------------------------- /real_agents/adapters/data_model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/data_model/utils.py -------------------------------------------------------------------------------- /real_agents/adapters/executors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/executors/__init__.py -------------------------------------------------------------------------------- /real_agents/adapters/executors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/executors/base.py -------------------------------------------------------------------------------- /real_agents/adapters/executors/chat_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/executors/chat_executor.py -------------------------------------------------------------------------------- /real_agents/adapters/executors/question_suggestion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/adapters/executors/question_suggestion/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/executors/question_suggestion/base.py -------------------------------------------------------------------------------- /real_agents/adapters/interactive_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/interactive_executor.py -------------------------------------------------------------------------------- /real_agents/adapters/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/llm.py -------------------------------------------------------------------------------- /real_agents/adapters/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/memory/__init__.py -------------------------------------------------------------------------------- /real_agents/adapters/memory/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/memory/buffer.py -------------------------------------------------------------------------------- /real_agents/adapters/memory/read_only_string_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/memory/read_only_string_memory.py -------------------------------------------------------------------------------- /real_agents/adapters/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/models/__init__.py -------------------------------------------------------------------------------- /real_agents/adapters/models/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/models/anthropic.py -------------------------------------------------------------------------------- /real_agents/adapters/models/azure_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/models/azure_openai.py -------------------------------------------------------------------------------- /real_agents/adapters/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/models/base.py -------------------------------------------------------------------------------- /real_agents/adapters/models/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/models/openai.py -------------------------------------------------------------------------------- /real_agents/adapters/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/adapters/schema.py -------------------------------------------------------------------------------- /real_agents/data_agent/.code_interpreter_docker_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/.code_interpreter_docker_env -------------------------------------------------------------------------------- /real_agents/data_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/README.md -------------------------------------------------------------------------------- /real_agents/data_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/__init__.py -------------------------------------------------------------------------------- /real_agents/data_agent/copilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/copilot.py -------------------------------------------------------------------------------- /real_agents/data_agent/copilot_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/copilot_prompt.py -------------------------------------------------------------------------------- /real_agents/data_agent/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/data_agent/evaluation/python_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/evaluation/python_evaluator.py -------------------------------------------------------------------------------- /real_agents/data_agent/evaluation/sql_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/evaluation/sql_evaluator.py -------------------------------------------------------------------------------- /real_agents/data_agent/executors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/data_agent/executors/data_summary_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/executors/data_summary_executor.py -------------------------------------------------------------------------------- /real_agents/data_agent/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/data_agent/python/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/python/base.py -------------------------------------------------------------------------------- /real_agents/data_agent/python/echarts_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/python/echarts_prompt.py -------------------------------------------------------------------------------- /real_agents/data_agent/python/python_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/python/python_prompt.py -------------------------------------------------------------------------------- /real_agents/data_agent/python/system_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/python/system_prompt.py -------------------------------------------------------------------------------- /real_agents/data_agent/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/data_agent/sql/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/sql/base.py -------------------------------------------------------------------------------- /real_agents/data_agent/sql/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/data_agent/sql/prompt.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/README.md -------------------------------------------------------------------------------- /real_agents/plugins_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/api_calling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/api_calling/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/api_calling/base.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/api_calling/custom_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/api_calling/custom_exceptions.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/api_calling/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/api_calling/prompt.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/executors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/executors/plugin_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/executors/plugin_executor.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugin.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugin_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugin_prompt.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ABCmouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ABCmouse/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ABCmouse/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ABCmouse/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ABCmouse/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Agones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Agones/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Agones/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Agones/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Agones/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Agones/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Agones/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Ai_PDF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Ai_PDF/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Ai_PDF/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Ai_PDF/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Ai_PDF/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Ai_PDF/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Ai_PDF/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Algorithma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Algorithma/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Algorithma/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Algorithma/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Algorithma/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Algorithma/paths/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Algorithma/paths/home.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Algorithma/paths/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Algorithma/paths/start.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ApexMap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ApexMap/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ApexMap/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ApexMap/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ApexMap/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ApexMap/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ApexMap/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/AppyPieAIAppBuilder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/AppyPieAIAppBuilder/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "text_to_app": "/v1" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ArtCollection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ArtCollection/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "art_collection": "/{query}" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/AskTheCode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/AskTheCode/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/AskTheCode/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/AskTheCode/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/AskTheCode/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Austrian_Bank_Rates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Avalara/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Avalara/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Avalara/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Avalara/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Avalara/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Avalara/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Avalara/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/BOXIL_SaaS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/BOXIL_SaaS/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/BOXIL_SaaS/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/BOXIL_SaaS/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/BOXIL_SaaS/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Bardeen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Bardeen/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Bardeen/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Bardeen/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Bardeen/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Bardeen/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Bardeen/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Broadway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Broadway/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Broadway/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Broadway/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Broadway/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/BubbleGoods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/BubbleGoods/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/BubbleGoods/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ByByAI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ByByAI/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ByByAI/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ByByAI/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ByByAI/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ByByAI/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ByByAI/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/C3_Glide/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/C3_Glide/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/C3_Glide/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/C3_Glide/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/C3_Glide/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CTCP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CTCP/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/CTCP/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CTCP/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/CTCP/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CTCP/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/CTCP/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CTCP/paths/get_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/CTCP/paths/get_trial.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ChatOCR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ChatOCR/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ChatOCR/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ChatOCR/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ChatOCR/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ChatOCR/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ChatOCR/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ChatOCR/paths/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ChatOCR/paths/feedback.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ChatWithGit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ChatWithGit/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ChatWithGit/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CheckTheChain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CloudDiagramGen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coupert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coupert/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Coupert/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coupert/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Coupert/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coupert/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Coupert/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coupert/paths/getStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Coupert/paths/getStore.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coursera/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coursera/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Coursera/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coursera/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Coursera/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Coursera/paths/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Coursera/paths/search.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CranePumpsManuals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CreatuityStores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/CribbageScorer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Diagrams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Diagrams/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Diagrams/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Diagrams/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Diagrams/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Dr_Thoths_Tarot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/DreamInterpreter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/EasyProductSearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Ferryhopper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Ferryhopper/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Ferryhopper/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Figlet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Figlet/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Figlet/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Figlet/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Figlet/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Figlet/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Figlet/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Figlet/paths/ascii_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Figlet/paths/ascii_art.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GameSight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GameSight/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/GameSight/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GameSight/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/GameSight/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Gate2AI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Gate2AI/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Gate2AI/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Gate2AI/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Gate2AI/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Gate2AI/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Gate2AI/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GifApi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GifApi/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/GifApi/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GifApi/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/GifApi/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GifApi/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/GifApi/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GifApi/paths/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/GifApi/paths/search.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/GifApi/paths/trending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/GifApi/paths/trending.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Google_Ads_Shopping_Microsoft_Ads_pay_per_click/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ImageSearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ImageSearch/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ImageSearch/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/IndoorPlants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/IndoorPlants/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/IndoorPlants/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/IndoorPlants/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "get_context": "/query" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/IsotonixProducts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/JobInterview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/JobInterview/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/JobInterview/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/LGTM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/LGTM/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/LGTM/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/LGTM/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/LGTM/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/LGTM/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "lgtm": "/chatgpt" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/LGTM/paths/lgtm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/LGTM/paths/lgtm.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/MemeGenerator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/MixerBox_News/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/MixerBox_OnePlayer_music/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/MixerBox_Podcasts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/MixerBox_Weather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/MyWritingCompanion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Netlify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Netlify/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Netlify/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Netlify/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Netlify/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Netlify/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "deploy": "/api/drop" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Netlify/paths/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Netlify/paths/deploy.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Now/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Now/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Now/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Now/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Now/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Now/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Now/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Now/paths/get_trends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Now/paths/get_trends.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Outschool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Outschool/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Outschool/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Outschool/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Outschool/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Paraphraser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Paraphraser/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Paraphraser/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/PluginRandomCreatureGeneration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Pluginpedia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Pluginpedia/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Pluginpedia/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/PortfoliosLab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/PrimeLoupe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/PrimeLoupe/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/PrimeLoupe/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/PrimeLoupe/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/PrimeLoupe/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/PrimeLoupe/paths/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/PrimeLoupe/paths/index.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/PrimeLoupe/paths/terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/PrimeLoupe/paths/terms.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Puzzle_Constructor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/QASMShor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/QASMShor/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/QASMShor/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/QASMShor/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/QASMShor/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/QyrusTestPilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/RecombinantAI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ResumeCopilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/RoboAd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/RoboAd/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/RoboAd/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/RoboAd/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/RoboAd/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/RoboAd/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/RoboAd/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Roshi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Roshi/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Roshi/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Roshi/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Roshi/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Roshi/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Roshi/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ScholarlyInsight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ScholarlyInsight/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "search_arxiv": "/{content}" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Sentence_Beasts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ShopMate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ShopMate/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ShopMate/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ShopMate/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ShopMate/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Singapore_Places_Of_Interest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Spirify_model_qrcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/StockData/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/StockData/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/StockData/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/StockData/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/StockData/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/SuperchargeMyEV/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Supercharger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Supercharger/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Supercharger/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Tabor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Tabor/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Tabor/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Tabor/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Tabor/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Tabor/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Tabor/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Tabor/paths/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Tabor/paths/prompt.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Tagvenue_top_venues_for_hire_in_UK_and_beyond/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TalentOrg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TalentOrg/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/TalentOrg/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TalentOrg/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/TalentOrg/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Talkface_IELTS_Prep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Tax_Calculator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TechPulse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TechPulse/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/TechPulse/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TechPulse/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/TechPulse/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/The_Diet_Search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TicTacToe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TicTacToe/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/TicTacToe/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TicTacToe/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/TicTacToe/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TokenInsights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TrySpree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TrySpree/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/TrySpree/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/TrySpree/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/TrySpree/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Video_summary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Weather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Weather/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Weather/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Weather/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Weather/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Weather/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/Weather/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/WeatherWizard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Weather_Forecast/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Weather_and_Train_and_in_Korea/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/WebRewind/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/WebRewind/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/WebRewind/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/WebRewind/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/WebRewind/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/WordCloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/WordCloud/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/WordCloud/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/WordCloud/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/WordCloud/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/XWeather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/XWeather/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/XWeather/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/XWeather/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/XWeather/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/Xpapers_arXiv_paper_database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/access_link/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/access_link/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/access_link/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/access_pdf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/access_pdf/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/access_pdf/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/access_pdf/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/access_pdf/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/acquire/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/acquire/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/acquire/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/acquire/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/acquire/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/acquire/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/acquire/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/aiAgents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/aiAgents/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/aiAgents/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/aiAgents/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/aiAgents/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ai_council/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ai_council/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ai_council/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ai_council/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/ai_council/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ai_council/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = {"ask_question": "/ask"} 2 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/alagaAI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/alagaAI/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/alagaAI/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/alagaAI/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/alagaAI/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/alagaAI/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/alagaAI/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/aldenbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/aldenbot/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/aldenbot/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/aldenbot/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/aldenbot/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/alpha_vantage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/alpha_vantage/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = {"search": "/query"} 2 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/api_nba/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/api_nba/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/api_nba/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/api_nba/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/api_nba/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/api_nba/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/api_nba/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/api_nba/paths/leagues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/api_nba/paths/leagues.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/api_nba/paths/players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/api_nba/paths/players.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/api_nba/paths/seasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/api_nba/paths/seasons.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/api_nba/paths/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/api_nba/paths/teams.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ask_my_first_million_podcast_chatbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ask_my_first_million_podcast_chatbot/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "podcast_chatbot": "/relevant-info" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/askyourpdf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/askyourpdf/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/askyourpdf/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/askyourpdf/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/askyourpdf/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/balldontlie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/bart_realtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/bibliography_crossref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/biztoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/biztoc/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/biztoc/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/biztoc/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/biztoc/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/boolio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/boolio/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/boolio/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/boolio/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/boolio/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/calculator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/calculator/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = {"execute_formula": "/"} 2 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/career_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/career_test/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "job_info": "/hello" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/chabadCenters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/champdex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/champdex/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/champdex/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/champdex/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "get_champion_info": "/dex/lol.php" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/charity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/charity/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/charity/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/charity/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/charity/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/chicago_data_portal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/coincap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/coincap/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/coincap/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/coincap/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/coincap/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/companieshouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/competitorppcads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/converter_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/copilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/copilot/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/copilot/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/copilot/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/copilot/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/copilot/paths/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/copilot/paths/logo.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/crafty_clues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/create_qr_code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/creativemind/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/cryptoPriceAndNews/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/crypto_price_checker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/crypto_price_checker/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = {"check_price": "/"} 2 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/cryptomation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/cryptopulse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/currency_today/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/currencyconverter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/customplugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/customplugin/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "get_context": "/query" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/datasette/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/datasette/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/datasette/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/deepmemory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/dfa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/dfa/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/dfa/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/dfa/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/dfa/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/dfa/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/dfa/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/diceroller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/domains/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/domains/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/domains/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/domains/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/domains/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/earthImagesAndVisualizations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/exchangerates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/factcheck/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/factcheck/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/factcheck/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/find_agency/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/find_stock_ideas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/find_teachers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/findafreelancer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/findagift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/findagift/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/findagift/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/finnabolag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/fiscalnote/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/form/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/form/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/form/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/form/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/form/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/form/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/formgenerator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/fundsdbsearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/game_info_fetcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/getyourguide_activity_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/gitUserRepoStats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/google_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/got2go_plugin_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/hackit_web_scanner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/hadith/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/hadith/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/hadith/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/hadith/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/hadith/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/hdbcarpark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/highPerplexity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/indoorplantbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/indoorplantbot/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "get_context": "/query" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/italy_latest_news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jini/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jini/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/jini/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jini/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/jini/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jini/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/jini/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jini/paths/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/jini/paths/query.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jobsearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jobsearch/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/jobsearch/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jopilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jopilot/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/jopilot/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/jopilot/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/jopilot/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/keywordexplorer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/klarna/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/klarna/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/klarna/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/klarna/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/klarna/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/konkanitranslator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/konkanitranslator/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "get_context": "/query" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/korea_subway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/kraftful/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/kraftful/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/kraftful/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/litmaps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/litmaps/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/litmaps/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/litmaps/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/litmaps/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/local/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/local/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/local/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/local/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/locate_inventory_for_electronic_components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/lsongai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/lsongai/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/lsongai/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/lsongai/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/lsongai/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/magi_codex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/maps/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/maps/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/maps/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/maps/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/maps/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = {"generate_map": "/"} 2 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/mediaready/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/message_in_a_bottle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/metar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/metar/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/metar/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/metar/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/metar/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/metar/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "get_metar": "/index.php" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/nasaMediaExplorer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/nba_stats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/nba_stats/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/nba_stats/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/newsapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/newsapi/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/newsapi/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/newsapi/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/newsapi/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/nextpaper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/nextpaper/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/nextpaper/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/nonprofits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/omdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/omdb/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/omdb/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/omdb/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/omdb/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/omdb/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = {"search": "/"} 2 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/omdb/paths/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/omdb/paths/search.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/open_meteo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/photorealistic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/plugin_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/plugin_names.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/podcastSearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/pollthepeople/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/pollthepeople/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "get_context": "/query" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/polygon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/polygon/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/polygon/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/polygon/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/polygon/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/property_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/ptcg_price_research/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/qreator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/qreator/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/qreator/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/qreator/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/qreator/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/questmate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/questmate/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/questmate/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/rephrase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/rephrase/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/rephrase/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/repo_radar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/resume/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/resume/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/resume/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/resume/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/resume/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/savvy_trader_ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/scholarai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/scholarai/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/scholarai/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/search/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/search/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/search/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/search/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/seo_assistant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/shimmer_daily/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/shopbest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/shopbest/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/shopbest/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/show_me/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/show_me/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/show_me/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/show_me/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/show_me/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/skyscanner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/speak/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/speak/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/speak/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/speak/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/speak/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/speedy_marketing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/spotify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/spotify/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/spotify/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/spotify/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/spotify/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/statisfinapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/strology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/strology/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/strology/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/surge_ai_trends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/themeparkhipster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/timemachine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/timemachine/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "now__get": "/" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/tombradybot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/tombradybot/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = { 2 | "get_context": "/query" 3 | } -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/tool_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/tool_selector.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/tophap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/tophap/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/tophap/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/tophap/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/tophap/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/tradersinsight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/travelActivityHotel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/trending_music/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/twelve_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/uberchord/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/uberchord/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/uberchord/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/utils.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/video_highlight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/video_insights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wahi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wahi/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/wahi/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wahi/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/wahi/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wahi/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/wahi/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wanted_job_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/web5/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/web5/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/web5/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/web5/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/web5/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/web5/paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/web5/paths/__init__.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/web5/paths/dwn_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/web5/paths/dwn_read.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/web5/paths/help_did.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/web5/paths/help_did.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/web_requests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/web_scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/what_to_watch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/whois_domain_checker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/whois_domain_checker/paths/__init__.py: -------------------------------------------------------------------------------- 1 | path_dict = {"check_domains": "/"} 2 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wishbucket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wolfram/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wolfram/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/wolfram/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wolfram/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/wolfram/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/wolfram/paths/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/wolfram/paths/query.py -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/word_and_character_count/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/word_sneak/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/youtube/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/youtube/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/youtube/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/youtube/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/youtube/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/zapier/__init__.py: -------------------------------------------------------------------------------- 1 | """Zapier Tool.""" 2 | -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/zapier/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/zapier/ai-plugin.json -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/zapier/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/zapier/openapi.yaml -------------------------------------------------------------------------------- /real_agents/plugins_agent/plugins/zapier/personnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/plugins_agent/plugins/zapier/personnel.py -------------------------------------------------------------------------------- /real_agents/web_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/README.md -------------------------------------------------------------------------------- /real_agents/web_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/__init__.py -------------------------------------------------------------------------------- /real_agents/web_agent/executors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/web_agent/executors/web_browsing_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/executors/web_browsing_executor.py -------------------------------------------------------------------------------- /real_agents/web_agent/executors/webot_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/executors/webot_executor.py -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/web_browsing/base.py -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/end2end/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/end2end/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/web_browsing/end2end/base.py -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/end2end/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/web_browsing/end2end/prompt.py -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/web_browsing/prompt.py -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/react/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/react/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/web_browsing/react/base.py -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/react/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/web_browsing/react/prompt.py -------------------------------------------------------------------------------- /real_agents/web_agent/web_browsing/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/web_browsing/schema.py -------------------------------------------------------------------------------- /real_agents/web_agent/webot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/webot.py -------------------------------------------------------------------------------- /real_agents/web_agent/webot_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlang-ai/OpenAgents/HEAD/real_agents/web_agent/webot_prompt.py --------------------------------------------------------------------------------