{"id":19287880,"url":"https://github.com/deeppavlov/dialog_flow_sdk","last_synced_at":"2025-08-30T20:07:02.614Z","repository":{"id":70996371,"uuid":"414708248","full_name":"deeppavlov/dialog_flow_sdk","owner":"deeppavlov","description":"Dialog Flow SDK","archived":false,"fork":false,"pushed_at":"2022-02-18T17:28:07.000Z","size":2696,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-22T05:22:15.665Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deeppavlov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-10-07T18:05:17.000Z","updated_at":"2022-10-29T07:35:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"c6cc5099-6a8a-4c76-a8cf-18bc72e133ef","html_url":"https://github.com/deeppavlov/dialog_flow_sdk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/deeppavlov/dialog_flow_sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeppavlov%2Fdialog_flow_sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeppavlov%2Fdialog_flow_sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeppavlov%2Fdialog_flow_sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeppavlov%2Fdialog_flow_sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deeppavlov","download_url":"https://codeload.github.com/deeppavlov/dialog_flow_sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeppavlov%2Fdialog_flow_sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272900157,"owners_count":25012033,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T22:07:30.015Z","updated_at":"2025-08-30T20:07:02.607Z","avatar_url":"https://github.com/deeppavlov.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Welcome to Dialog Flow SDK\nThis is an early alpha version of the DD-IDDE SDK. It is used in combination with the DeepPavlov's DD-IDDE available [here](https://github.com/deepmipt/vscode-dff).\n\n## Requirements\n\n```bash\npip install -r requirements.txt\npython -m spacy download en_core_web_sm\n\n# install df_engine\npip install df_engine\n# install dashboard for stats\npip install dff-node-stats[dashboard] \n```\n### Environment\n\n| Item           | Requirements                                          | Comments                                                     |\n| -------------- | ----------------------------------------------------- | ------------------------------------------------------------ |\n| OS             | Debian-based distribution, e.g., Ubuntu or Windows 10 | This version was tested on Ubuntu 18.04 under WSL2 on Windows 11 and Windows 10. |\n| Python         | v3.9+                                                 | This version was tested on OS with Python 3.9.               |\n| Docker         | v20+                                                  | This version was tested with Docker v20.10.7 (64-bit).       |\n| Docker-Compose | v1.29.2                                               | This version was tested with Docker-Compose v1.29.2.         |\n\n### VS Code\n#### Required Extensions\n* DD-IDDE\n* Python\n* Docker\n\n#### Optional Extensions\n* Remote - WSL \n\n#### Set WSL-based Terminal As Default One\nIf needed, set your WSL-based terminal app as the default one in your VS Code by following these [instructions](https://dev.to/giannellitech/setting-the-default-terminal-in-vs-code-95c).\n\n### Python 3.9 - set as default (optional)\n1. Install the python3.9 package using apt-get\n\n```sudo apt-get install python3.9```\n\nAdd *Python3.6* \u0026 *Python 3.9* to update-alternatives\n\n```sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1```\n```sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 2```\n\nUpdate Python 3 to point to Python 3.9:\n\n```sudo update-alternatives --config python3```\n\nEnter 2 for Python 3.9\n\nTest the version of python:\n\n```python3 --version```\n```Python 3.9``` \n\nTest the version of python used by pip3 command:\n\n```pip3 --version```\n```pip 21.3.1 from /home/danielko/.local/lib/python3.9/site-packages/pip (python 3.9)```\n\n### Prerequisites\n\n```pip3 install lxml```\n\n## Installation Process\n### Runtime\nWe use [Dialog Flow Engine](https://www.github.com/deepmipt/dialog_flow_engine) as the runtime for the open-domain/scenario-driven chatbots.\n\nFollow these instructions to install Dialog Flow Engine:\n```bash\n# install df_engine\npip install df_engine\n# install dashboard for stats\npip install dff-node-stats[dashboard] \n```\n\nFollow these requirements to prepare DD-IDDE SDK to run on your machine:\n\n```bash\npip install -r requirements.txt\n```\n\n### Discourse Moves Recommendation System\nWe use our Speech Functions Classifier \u0026 Predictor from our larger [DeepPavlov Dream](https://www.github.com/deepmipt/dream) Multiskill AI Assistant Platform.\n\nFollow these instructions to run the Discourse Moves Recommendation System:\n```bash \ndocker-compose up -d --build\n```\nAfter that sf predictor is available on `localhost:8107/annotation` and sf classifier is availible on `localhost:8108/annotation` \n\n## Usage\n### DD-IDDE as Designer\nGo to your local clone of this repo and run:\n\n```code .```\n\nThis will ensure that your VS Code will run from this folder, and will (in case you use WSL) run through WSL.\n\n### Dashboard\nCreate ssh tunnel:\n```\nssh -L 8501:localhost:8501 $HOST\n```\nCollect stats for food topic:\n```\npython examples/food.py \nCollect stats for artificial dialog:\n```\npython examples/stats_collection.py \n```\nAfter that run dashboard:\n```\nstreamlit run examples/stats_dashboard.py\n```\n\n### Discourse Moves Recommendation System\nTBD\n\n## Generic Responses\nTBD\n## Entity Detection\nTBD\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeeppavlov%2Fdialog_flow_sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeeppavlov%2Fdialog_flow_sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeeppavlov%2Fdialog_flow_sdk/lists"}