├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .pylintrc ├── .travis.yml ├── AUTHORS.md ├── BuildDockerImage.sh ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile.CLAI ├── Dockerfile.CLAIServer ├── Dockerfile.Dev ├── Jenkinsfile ├── LICENSE.txt ├── Makefile ├── Makefile.gnu ├── Makefile.uss ├── README.md ├── RunDockerImage.sh ├── StopDockerImage.sh ├── anonymize.json ├── bin ├── clai-run ├── emulator.py ├── fswatchlog ├── obtain-command-id ├── post-execution ├── process-command └── restore-history ├── clai ├── README.md ├── __init__.py ├── __version__.py ├── clai_run.py ├── datasource │ ├── __init__.py │ ├── action_remote_storage.py │ ├── config_storage.py │ ├── model │ │ ├── __init__.py │ │ ├── pending_actions.py │ │ ├── plugin_config.py │ │ └── stat_event.py │ ├── server_pending_actions_datasource.py │ ├── server_status_datasource.py │ └── stats_tracker.py ├── emulator │ ├── __init__.py │ ├── clai_emulator.py │ ├── docker │ │ └── centos │ │ │ └── Dockerfile │ ├── docker_message.py │ ├── emufileExist.sh │ ├── emulator_docker_bridge.py │ ├── emulator_docker_log_connector.py │ ├── emulator_presenter.py │ ├── expand_less.gif │ ├── expand_more.gif │ ├── log.png │ ├── log_window.py │ ├── refresh.png │ ├── run.gif │ ├── stop.gif │ └── toggled_frame.py ├── fswatchlog_command.py ├── obtain_command_id.py ├── post_execution_command.py ├── process_command.py ├── remote_storage │ └── model_api.py ├── restore_history.py ├── server │ ├── README.md │ ├── __init__.py │ ├── agent.py │ ├── agent_datasource.py │ ├── agent_datasource_executor.py │ ├── agent_executor.py │ ├── agent_runner.py │ ├── clai_client.py │ ├── clai_message_builder.py │ ├── clai_server.py │ ├── client_connector.py │ ├── command_message.py │ ├── command_runner │ │ ├── __init__.py │ │ ├── agent_command_runner.py │ │ ├── agent_descriptor.py │ │ ├── clai_delegate_to_agent_command_runner.py │ │ ├── clai_help_command_runner.py │ │ ├── clai_install_command_runner.py │ │ ├── clai_last_info_command_runner.py │ │ ├── clai_orchestrate_command_runner.py │ │ ├── clai_plugins_command_runner.py │ │ ├── clai_power_command_runner.py │ │ ├── clai_power_disable_command_runner.py │ │ ├── clai_reload_command_runner.py │ │ ├── clai_select_command_runner.py │ │ ├── clai_unselect_command_runner.py │ │ ├── clean_input.py │ │ ├── command_runner.py │ │ └── command_runner_factory.py │ ├── logger.py │ ├── message_handler.py │ ├── orchestration │ │ ├── __init__.py │ │ ├── orchestrator.py │ │ ├── orchestrator_descriptor.py │ │ ├── orchestrator_provider.py │ │ ├── orchestrator_storage.py │ │ └── patterns │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── max_orchestrator │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── config.json │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── max_orchestrator.py │ │ │ └── requirements.txt │ │ │ ├── preference_orchestrator │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── config.json │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── preference_orchestrator.py │ │ │ └── requirements.txt │ │ │ ├── rltk_bandit_orchestrator │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── bandit_config.json │ │ │ ├── config.yml │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── requirements.txt │ │ │ ├── rltk_bandit_orchestrator.py │ │ │ └── warm_start_datagen.py │ │ │ └── threshold_orchestrator │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── manifest.properties │ │ │ └── threshold_orchestrator.py │ ├── plugins │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dataxplore │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── dataxplore.py │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ └── requirements.txt │ │ ├── fix_bot │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── fix_bot.py │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ └── requirements.txt │ │ ├── gitbot │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── gitbot.py │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── rasa │ │ │ │ ├── __init__.py │ │ │ │ ├── config.yml │ │ │ │ ├── data │ │ │ │ │ └── nlu.md │ │ │ │ └── models │ │ │ │ │ └── rasa-saved-nlu-model.tar.gz │ │ │ ├── requirements.txt │ │ │ ├── run_rasa.sh │ │ │ ├── sample_config.json │ │ │ └── service.py │ │ ├── gpt3 │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── gpt3.py │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── prompt.json │ │ │ └── requirements.txt │ │ ├── helpme │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── config.ini │ │ │ ├── data.py │ │ │ ├── helpme.py │ │ │ ├── install.sh │ │ │ ├── install_darwin.sh.bkp │ │ │ ├── manifest.properties │ │ │ └── requirements.txt │ │ ├── howdoi │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── config.ini │ │ │ ├── data.py │ │ │ ├── howdoi.py │ │ │ ├── install.sh │ │ │ ├── install_darwin.sh.bkp │ │ │ ├── manifest.properties │ │ │ ├── question_detection.py │ │ │ └── requirements.txt │ │ ├── ibmcloud │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── app.yaml │ │ │ ├── helper.py │ │ │ ├── ibmcloud.py │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── planners.py │ │ │ ├── planning-files │ │ │ │ ├── domain.pddl │ │ │ │ ├── problem.pddl │ │ │ │ └── template.pddl │ │ │ ├── requirements.txt │ │ │ ├── sample-application-files │ │ │ │ ├── app.yaml │ │ │ │ ├── requirements.txt │ │ │ │ └── run.py │ │ │ └── temp.dat │ │ ├── linuss │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── equivalencies.json │ │ │ ├── install.sh │ │ │ ├── linuss.gif │ │ │ ├── linuss.py │ │ │ ├── manifest.properties │ │ │ └── requirements.txt │ │ ├── manpage_agent │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── config.json │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── manpage_agent.py │ │ │ ├── question_detection.py │ │ │ ├── requirements.txt │ │ │ ├── tldr_wrapper.py │ │ │ └── webapp │ │ │ │ ├── .gitignore │ │ │ │ ├── Procfile │ │ │ │ ├── app.py │ │ │ │ ├── data.py │ │ │ │ ├── manifest.yml │ │ │ │ ├── requirements.txt │ │ │ │ ├── runtime.txt │ │ │ │ ├── train_requirements.txt │ │ │ │ ├── train_sklearn_agent.py │ │ │ │ └── train_sklearn_agent.sh │ │ ├── nlc2cmd │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── nlc2cmd.py │ │ │ ├── remote │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ ├── config.json │ │ │ │ ├── manifest.yml │ │ │ │ ├── requirements.txt │ │ │ │ ├── run.py │ │ │ │ └── runtime.txt │ │ │ ├── requirements.txt │ │ │ ├── service.py │ │ │ └── wa_skills │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── cloudbot.py │ │ │ │ ├── config.json │ │ │ │ ├── grepbot.py │ │ │ │ ├── tarbot.py │ │ │ │ ├── utils.py │ │ │ │ └── zosbot.py │ │ ├── tellina │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── requirements.txt │ │ │ └── tellina.py │ │ ├── voice │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── install_darwin.sh │ │ │ ├── manifest.properties │ │ │ ├── priming.json │ │ │ ├── requirements.txt │ │ │ └── voice.py │ │ └── zmsgcode │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── config.ini │ │ │ ├── install.sh │ │ │ ├── manifest.properties │ │ │ ├── requirements.txt │ │ │ ├── zmsgcode.gif │ │ │ └── zmsgcode.py │ ├── searchlib │ │ ├── README.md │ │ ├── __init__.py │ │ ├── data.py │ │ ├── kc_provider.py │ │ ├── man_provider.py │ │ ├── providers.py │ │ └── se_provider.py │ ├── server_connector.py │ ├── socket_client_connector.py │ ├── socket_server_connector.py │ ├── state_mapper.py │ ├── utilities │ │ ├── __init__.py │ │ └── gpt3 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── gpt3.py │ ├── web_socket_client_connector.py │ └── web_socket_server_connector.py └── tools │ ├── __init__.py │ ├── anonymizer.py │ ├── colorize_console.py │ ├── console_helper.py │ ├── docker_utils.py │ ├── file_util.py │ └── process_utils.py ├── configPlugins.json ├── develop.py ├── develop.sh ├── docker-compose.yaml ├── docs ├── FAQ.md ├── Installation.md ├── Overview.md ├── README.md └── Troubleshooting.md ├── emulator.sh ├── install.py ├── install.sh ├── known-issues.md ├── my_agent ├── __init__.py ├── manifest.properties └── my_agent.py ├── requirements.txt ├── requirements_dev.txt ├── requirements_emulator.txt ├── requirements_test.txt ├── requirements_utilities.txt ├── runLocalTests.sh ├── scripts ├── clai.sh ├── fileExist.sh ├── installOrchestrator.sh └── saveFilesChanges.sh ├── test ├── __init__.py ├── io_utils.py ├── mock_executor.py ├── sample_zcmds │ ├── mvs.txt │ ├── tso.txt │ └── uss.txt ├── state_mother.py ├── test_clai_plugins_helpme.py ├── test_clai_plugins_howdoi.py ├── test_clai_plugins_nlc2cmd_cloud.py ├── test_clai_plugins_zmsgcode.py ├── test_clai_server_install.py ├── test_message_handler.py ├── test_message_power.py ├── test_process_command.py └── test_restore_history.py ├── test_integration ├── __init__.py ├── conftest.py ├── contract_skills.py ├── docker │ └── centos │ │ ├── Dockerfile │ │ └── Dockerfile.no.install ├── test_install.py ├── test_skill_fixit.py ├── test_skill_helpme.py ├── test_skill_howdoi.py ├── test_skill_manpageexplorer.py ├── test_skill_nlc2cmd.py └── test_skill_tellina.py ├── uninstall.py ├── uninstall.sh ├── usersInstalled.json └── utils ├── .bash_profile ├── .bashrc ├── .profile ├── README.md ├── getMakeType.sh └── getVersionInfo.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /BuildDockerImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/BuildDockerImage.sh -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile.CLAI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/Dockerfile.CLAI -------------------------------------------------------------------------------- /Dockerfile.CLAIServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/Dockerfile.CLAIServer -------------------------------------------------------------------------------- /Dockerfile.Dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/Dockerfile.Dev -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/Makefile.gnu -------------------------------------------------------------------------------- /Makefile.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/Makefile.uss -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/README.md -------------------------------------------------------------------------------- /RunDockerImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/RunDockerImage.sh -------------------------------------------------------------------------------- /StopDockerImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/StopDockerImage.sh -------------------------------------------------------------------------------- /anonymize.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /bin/clai-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/bin/clai-run -------------------------------------------------------------------------------- /bin/emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/bin/emulator.py -------------------------------------------------------------------------------- /bin/fswatchlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/bin/fswatchlog -------------------------------------------------------------------------------- /bin/obtain-command-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/bin/obtain-command-id -------------------------------------------------------------------------------- /bin/post-execution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/bin/post-execution -------------------------------------------------------------------------------- /bin/process-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/bin/process-command -------------------------------------------------------------------------------- /bin/restore-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/bin/restore-history -------------------------------------------------------------------------------- /clai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/README.md -------------------------------------------------------------------------------- /clai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/__init__.py -------------------------------------------------------------------------------- /clai/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/__version__.py -------------------------------------------------------------------------------- /clai/clai_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/clai_run.py -------------------------------------------------------------------------------- /clai/datasource/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/__init__.py -------------------------------------------------------------------------------- /clai/datasource/action_remote_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/action_remote_storage.py -------------------------------------------------------------------------------- /clai/datasource/config_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/config_storage.py -------------------------------------------------------------------------------- /clai/datasource/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/model/__init__.py -------------------------------------------------------------------------------- /clai/datasource/model/pending_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/model/pending_actions.py -------------------------------------------------------------------------------- /clai/datasource/model/plugin_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/model/plugin_config.py -------------------------------------------------------------------------------- /clai/datasource/model/stat_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/model/stat_event.py -------------------------------------------------------------------------------- /clai/datasource/server_pending_actions_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/server_pending_actions_datasource.py -------------------------------------------------------------------------------- /clai/datasource/server_status_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/server_status_datasource.py -------------------------------------------------------------------------------- /clai/datasource/stats_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/datasource/stats_tracker.py -------------------------------------------------------------------------------- /clai/emulator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/__init__.py -------------------------------------------------------------------------------- /clai/emulator/clai_emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/clai_emulator.py -------------------------------------------------------------------------------- /clai/emulator/docker/centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/docker/centos/Dockerfile -------------------------------------------------------------------------------- /clai/emulator/docker_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/docker_message.py -------------------------------------------------------------------------------- /clai/emulator/emufileExist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/emufileExist.sh -------------------------------------------------------------------------------- /clai/emulator/emulator_docker_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/emulator_docker_bridge.py -------------------------------------------------------------------------------- /clai/emulator/emulator_docker_log_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/emulator_docker_log_connector.py -------------------------------------------------------------------------------- /clai/emulator/emulator_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/emulator_presenter.py -------------------------------------------------------------------------------- /clai/emulator/expand_less.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/expand_less.gif -------------------------------------------------------------------------------- /clai/emulator/expand_more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/expand_more.gif -------------------------------------------------------------------------------- /clai/emulator/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/log.png -------------------------------------------------------------------------------- /clai/emulator/log_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/log_window.py -------------------------------------------------------------------------------- /clai/emulator/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/refresh.png -------------------------------------------------------------------------------- /clai/emulator/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/run.gif -------------------------------------------------------------------------------- /clai/emulator/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/stop.gif -------------------------------------------------------------------------------- /clai/emulator/toggled_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/emulator/toggled_frame.py -------------------------------------------------------------------------------- /clai/fswatchlog_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/fswatchlog_command.py -------------------------------------------------------------------------------- /clai/obtain_command_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/obtain_command_id.py -------------------------------------------------------------------------------- /clai/post_execution_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/post_execution_command.py -------------------------------------------------------------------------------- /clai/process_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/process_command.py -------------------------------------------------------------------------------- /clai/remote_storage/model_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/remote_storage/model_api.py -------------------------------------------------------------------------------- /clai/restore_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/restore_history.py -------------------------------------------------------------------------------- /clai/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/README.md -------------------------------------------------------------------------------- /clai/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/__init__.py -------------------------------------------------------------------------------- /clai/server/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/agent.py -------------------------------------------------------------------------------- /clai/server/agent_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/agent_datasource.py -------------------------------------------------------------------------------- /clai/server/agent_datasource_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/agent_datasource_executor.py -------------------------------------------------------------------------------- /clai/server/agent_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/agent_executor.py -------------------------------------------------------------------------------- /clai/server/agent_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/agent_runner.py -------------------------------------------------------------------------------- /clai/server/clai_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/clai_client.py -------------------------------------------------------------------------------- /clai/server/clai_message_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/clai_message_builder.py -------------------------------------------------------------------------------- /clai/server/clai_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/clai_server.py -------------------------------------------------------------------------------- /clai/server/client_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/client_connector.py -------------------------------------------------------------------------------- /clai/server/command_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_message.py -------------------------------------------------------------------------------- /clai/server/command_runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/__init__.py -------------------------------------------------------------------------------- /clai/server/command_runner/agent_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/agent_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/agent_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/agent_descriptor.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_delegate_to_agent_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_delegate_to_agent_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_help_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_help_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_install_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_install_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_last_info_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_last_info_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_orchestrate_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_orchestrate_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_plugins_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_plugins_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_power_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_power_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_power_disable_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_power_disable_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_reload_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_reload_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_select_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_select_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clai_unselect_command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clai_unselect_command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/clean_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/clean_input.py -------------------------------------------------------------------------------- /clai/server/command_runner/command_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/command_runner.py -------------------------------------------------------------------------------- /clai/server/command_runner/command_runner_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/command_runner/command_runner_factory.py -------------------------------------------------------------------------------- /clai/server/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/logger.py -------------------------------------------------------------------------------- /clai/server/message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/message_handler.py -------------------------------------------------------------------------------- /clai/server/orchestration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/__init__.py -------------------------------------------------------------------------------- /clai/server/orchestration/orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/orchestrator.py -------------------------------------------------------------------------------- /clai/server/orchestration/orchestrator_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/orchestrator_descriptor.py -------------------------------------------------------------------------------- /clai/server/orchestration/orchestrator_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/orchestrator_provider.py -------------------------------------------------------------------------------- /clai/server/orchestration/orchestrator_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/orchestrator_storage.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/README.md -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/__init__.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/max_orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/max_orchestrator/README.md -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/max_orchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/max_orchestrator/__init__.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/max_orchestrator/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "threshold": 0.4 3 | } 4 | -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/max_orchestrator/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/max_orchestrator/install.sh -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/max_orchestrator/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/max_orchestrator/manifest.properties -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/max_orchestrator/max_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/max_orchestrator/max_orchestrator.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/max_orchestrator/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/preference_orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/preference_orchestrator/README.md -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/preference_orchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/preference_orchestrator/__init__.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/preference_orchestrator/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/preference_orchestrator/config.json -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/preference_orchestrator/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/preference_orchestrator/install.sh -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/preference_orchestrator/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/preference_orchestrator/manifest.properties -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/preference_orchestrator/preference_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/preference_orchestrator/preference_orchestrator.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/preference_orchestrator/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/rltk_bandit_orchestrator/README.md -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/rltk_bandit_orchestrator/__init__.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/bandit_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/rltk_bandit_orchestrator/bandit_config.json -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/rltk_bandit_orchestrator/config.yml -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/rltk_bandit_orchestrator/install.sh -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/rltk_bandit_orchestrator/manifest.properties -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/rltk_bandit_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/rltk_bandit_orchestrator/rltk_bandit_orchestrator.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/rltk_bandit_orchestrator/warm_start_datagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/rltk_bandit_orchestrator/warm_start_datagen.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/threshold_orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/threshold_orchestrator/README.md -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/threshold_orchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/threshold_orchestrator/__init__.py -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/threshold_orchestrator/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/threshold_orchestrator/manifest.properties -------------------------------------------------------------------------------- /clai/server/orchestration/patterns/threshold_orchestrator/threshold_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/orchestration/patterns/threshold_orchestrator/threshold_orchestrator.py -------------------------------------------------------------------------------- /clai/server/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/README.md -------------------------------------------------------------------------------- /clai/server/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/dataxplore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/dataxplore/README.md -------------------------------------------------------------------------------- /clai/server/plugins/dataxplore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/dataxplore/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/dataxplore/dataxplore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/dataxplore/dataxplore.py -------------------------------------------------------------------------------- /clai/server/plugins/dataxplore/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/dataxplore/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/dataxplore/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/dataxplore/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/dataxplore/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/dataxplore/requirements.txt -------------------------------------------------------------------------------- /clai/server/plugins/fix_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/fix_bot/README.md -------------------------------------------------------------------------------- /clai/server/plugins/fix_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/fix_bot/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/fix_bot/fix_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/fix_bot/fix_bot.py -------------------------------------------------------------------------------- /clai/server/plugins/fix_bot/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/fix_bot/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/fix_bot/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/fix_bot/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/fix_bot/requirements.txt: -------------------------------------------------------------------------------- 1 | thefuck -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/README.md -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/gitbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/gitbot.py -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/rasa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/rasa/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/rasa/config.yml -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/rasa/data/nlu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/rasa/data/nlu.md -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/rasa/models/rasa-saved-nlu-model.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/rasa/models/rasa-saved-nlu-model.tar.gz -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | rasa -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/run_rasa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/run_rasa.sh -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/sample_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/sample_config.json -------------------------------------------------------------------------------- /clai/server/plugins/gitbot/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gitbot/service.py -------------------------------------------------------------------------------- /clai/server/plugins/gpt3/.gitignore: -------------------------------------------------------------------------------- 1 | openai_api.key -------------------------------------------------------------------------------- /clai/server/plugins/gpt3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gpt3/README.md -------------------------------------------------------------------------------- /clai/server/plugins/gpt3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gpt3/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/gpt3/gpt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gpt3/gpt3.py -------------------------------------------------------------------------------- /clai/server/plugins/gpt3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gpt3/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/gpt3/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gpt3/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/gpt3/prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/gpt3/prompt.json -------------------------------------------------------------------------------- /clai/server/plugins/gpt3/requirements.txt: -------------------------------------------------------------------------------- 1 | openai -------------------------------------------------------------------------------- /clai/server/plugins/helpme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/helpme/README.md -------------------------------------------------------------------------------- /clai/server/plugins/helpme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/helpme/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/helpme/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/helpme/config.ini -------------------------------------------------------------------------------- /clai/server/plugins/helpme/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/helpme/data.py -------------------------------------------------------------------------------- /clai/server/plugins/helpme/helpme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/helpme/helpme.py -------------------------------------------------------------------------------- /clai/server/plugins/helpme/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/helpme/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/helpme/install_darwin.sh.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/helpme/install_darwin.sh.bkp -------------------------------------------------------------------------------- /clai/server/plugins/helpme/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/helpme/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/helpme/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/README.md -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/config.ini -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/data.py -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/howdoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/howdoi.py -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/install_darwin.sh.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/install_darwin.sh.bkp -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/question_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/question_detection.py -------------------------------------------------------------------------------- /clai/server/plugins/howdoi/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/howdoi/requirements.txt -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/Dockerfile -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/README.md -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/app.yaml -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/helper.py -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/ibmcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/ibmcloud.py -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/planners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/planners.py -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/planning-files/domain.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/planning-files/domain.pddl -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/planning-files/problem.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/planning-files/problem.pddl -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/planning-files/template.pddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/planning-files/template.pddl -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/sample-application-files/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/sample-application-files/app.yaml -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/sample-application-files/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/sample-application-files/requirements.txt -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/sample-application-files/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/sample-application-files/run.py -------------------------------------------------------------------------------- /clai/server/plugins/ibmcloud/temp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/ibmcloud/temp.dat -------------------------------------------------------------------------------- /clai/server/plugins/linuss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/linuss/README.md -------------------------------------------------------------------------------- /clai/server/plugins/linuss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/linuss/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/linuss/equivalencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/linuss/equivalencies.json -------------------------------------------------------------------------------- /clai/server/plugins/linuss/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/linuss/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/linuss/linuss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/linuss/linuss.gif -------------------------------------------------------------------------------- /clai/server/plugins/linuss/linuss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/linuss/linuss.py -------------------------------------------------------------------------------- /clai/server/plugins/linuss/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/linuss/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/linuss/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/README.md -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/config.json -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/manpage_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/manpage_agent.py -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/question_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/question_detection.py -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/requirements.txt -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/tldr_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/tldr_wrapper.py -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/.gitignore: -------------------------------------------------------------------------------- 1 | data/ -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/webapp/Procfile -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/webapp/app.py -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/webapp/data.py -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/webapp/manifest.yml -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | sklearn 3 | flask -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.9 -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/train_requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | sklearn -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/train_sklearn_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/webapp/train_sklearn_agent.py -------------------------------------------------------------------------------- /clai/server/plugins/manpage_agent/webapp/train_sklearn_agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/manpage_agent/webapp/train_sklearn_agent.sh -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/README.md -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/nlc2cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/nlc2cmd.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/remote/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/remote/Procfile -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/remote/README.md -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/remote/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/remote/config.json -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/remote/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/remote/manifest.yml -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/remote/requirements.txt: -------------------------------------------------------------------------------- 1 | flask>=1.0.0 2 | ibm-watson>=4.1.0 3 | -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/remote/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/remote/run.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/remote/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.9 -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/service.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/wa_skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/wa_skills/README.md -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/wa_skills/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/wa_skills/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/wa_skills/cloudbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/wa_skills/cloudbot.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/wa_skills/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/wa_skills/config.json -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/wa_skills/grepbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/wa_skills/grepbot.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/wa_skills/tarbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/wa_skills/tarbot.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/wa_skills/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/wa_skills/utils.py -------------------------------------------------------------------------------- /clai/server/plugins/nlc2cmd/wa_skills/zosbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/nlc2cmd/wa_skills/zosbot.py -------------------------------------------------------------------------------- /clai/server/plugins/tellina/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/tellina/README.md -------------------------------------------------------------------------------- /clai/server/plugins/tellina/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/tellina/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/tellina/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/tellina/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/tellina/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/tellina/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/tellina/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /clai/server/plugins/tellina/tellina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/tellina/tellina.py -------------------------------------------------------------------------------- /clai/server/plugins/voice/.gitignore: -------------------------------------------------------------------------------- 1 | openai_api.key -------------------------------------------------------------------------------- /clai/server/plugins/voice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/voice/README.md -------------------------------------------------------------------------------- /clai/server/plugins/voice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/voice/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/voice/install_darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/voice/install_darwin.sh -------------------------------------------------------------------------------- /clai/server/plugins/voice/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/voice/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/voice/priming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/voice/priming.json -------------------------------------------------------------------------------- /clai/server/plugins/voice/requirements.txt: -------------------------------------------------------------------------------- 1 | gTTS 2 | openai -------------------------------------------------------------------------------- /clai/server/plugins/voice/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/voice/voice.py -------------------------------------------------------------------------------- /clai/server/plugins/zmsgcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/zmsgcode/README.md -------------------------------------------------------------------------------- /clai/server/plugins/zmsgcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/zmsgcode/__init__.py -------------------------------------------------------------------------------- /clai/server/plugins/zmsgcode/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/zmsgcode/config.ini -------------------------------------------------------------------------------- /clai/server/plugins/zmsgcode/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/zmsgcode/install.sh -------------------------------------------------------------------------------- /clai/server/plugins/zmsgcode/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/zmsgcode/manifest.properties -------------------------------------------------------------------------------- /clai/server/plugins/zmsgcode/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /clai/server/plugins/zmsgcode/zmsgcode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/zmsgcode/zmsgcode.gif -------------------------------------------------------------------------------- /clai/server/plugins/zmsgcode/zmsgcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/plugins/zmsgcode/zmsgcode.py -------------------------------------------------------------------------------- /clai/server/searchlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/searchlib/README.md -------------------------------------------------------------------------------- /clai/server/searchlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/searchlib/__init__.py -------------------------------------------------------------------------------- /clai/server/searchlib/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/searchlib/data.py -------------------------------------------------------------------------------- /clai/server/searchlib/kc_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/searchlib/kc_provider.py -------------------------------------------------------------------------------- /clai/server/searchlib/man_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/searchlib/man_provider.py -------------------------------------------------------------------------------- /clai/server/searchlib/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/searchlib/providers.py -------------------------------------------------------------------------------- /clai/server/searchlib/se_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/searchlib/se_provider.py -------------------------------------------------------------------------------- /clai/server/server_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/server_connector.py -------------------------------------------------------------------------------- /clai/server/socket_client_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/socket_client_connector.py -------------------------------------------------------------------------------- /clai/server/socket_server_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/socket_server_connector.py -------------------------------------------------------------------------------- /clai/server/state_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/state_mapper.py -------------------------------------------------------------------------------- /clai/server/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/utilities/__init__.py -------------------------------------------------------------------------------- /clai/server/utilities/gpt3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/utilities/gpt3/README.md -------------------------------------------------------------------------------- /clai/server/utilities/gpt3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/utilities/gpt3/__init__.py -------------------------------------------------------------------------------- /clai/server/utilities/gpt3/gpt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/utilities/gpt3/gpt3.py -------------------------------------------------------------------------------- /clai/server/web_socket_client_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/web_socket_client_connector.py -------------------------------------------------------------------------------- /clai/server/web_socket_server_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/server/web_socket_server_connector.py -------------------------------------------------------------------------------- /clai/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/tools/__init__.py -------------------------------------------------------------------------------- /clai/tools/anonymizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/tools/anonymizer.py -------------------------------------------------------------------------------- /clai/tools/colorize_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/tools/colorize_console.py -------------------------------------------------------------------------------- /clai/tools/console_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/tools/console_helper.py -------------------------------------------------------------------------------- /clai/tools/docker_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/tools/docker_utils.py -------------------------------------------------------------------------------- /clai/tools/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/tools/file_util.py -------------------------------------------------------------------------------- /clai/tools/process_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/clai/tools/process_utils.py -------------------------------------------------------------------------------- /configPlugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/configPlugins.json -------------------------------------------------------------------------------- /develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/develop.py -------------------------------------------------------------------------------- /develop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/develop.sh -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/docs/Installation.md -------------------------------------------------------------------------------- /docs/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/docs/Overview.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/docs/Troubleshooting.md -------------------------------------------------------------------------------- /emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/emulator.sh -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/install.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/install.sh -------------------------------------------------------------------------------- /known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/known-issues.md -------------------------------------------------------------------------------- /my_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/my_agent/__init__.py -------------------------------------------------------------------------------- /my_agent/manifest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/my_agent/manifest.properties -------------------------------------------------------------------------------- /my_agent/my_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/my_agent/my_agent.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_emulator.txt: -------------------------------------------------------------------------------- 1 | pytest-docker-tools==0.2.0 2 | Pillow==7.1.1 -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /requirements_utilities.txt: -------------------------------------------------------------------------------- 1 | openai -------------------------------------------------------------------------------- /runLocalTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/runLocalTests.sh -------------------------------------------------------------------------------- /scripts/clai.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/scripts/clai.sh -------------------------------------------------------------------------------- /scripts/fileExist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/scripts/fileExist.sh -------------------------------------------------------------------------------- /scripts/installOrchestrator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/scripts/installOrchestrator.sh -------------------------------------------------------------------------------- /scripts/saveFilesChanges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/scripts/saveFilesChanges.sh -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/io_utils.py -------------------------------------------------------------------------------- /test/mock_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/mock_executor.py -------------------------------------------------------------------------------- /test/sample_zcmds/mvs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/sample_zcmds/mvs.txt -------------------------------------------------------------------------------- /test/sample_zcmds/tso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/sample_zcmds/tso.txt -------------------------------------------------------------------------------- /test/sample_zcmds/uss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/sample_zcmds/uss.txt -------------------------------------------------------------------------------- /test/state_mother.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/state_mother.py -------------------------------------------------------------------------------- /test/test_clai_plugins_helpme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_clai_plugins_helpme.py -------------------------------------------------------------------------------- /test/test_clai_plugins_howdoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_clai_plugins_howdoi.py -------------------------------------------------------------------------------- /test/test_clai_plugins_nlc2cmd_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_clai_plugins_nlc2cmd_cloud.py -------------------------------------------------------------------------------- /test/test_clai_plugins_zmsgcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_clai_plugins_zmsgcode.py -------------------------------------------------------------------------------- /test/test_clai_server_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_clai_server_install.py -------------------------------------------------------------------------------- /test/test_message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_message_handler.py -------------------------------------------------------------------------------- /test/test_message_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_message_power.py -------------------------------------------------------------------------------- /test/test_process_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_process_command.py -------------------------------------------------------------------------------- /test/test_restore_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test/test_restore_history.py -------------------------------------------------------------------------------- /test_integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/__init__.py -------------------------------------------------------------------------------- /test_integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/conftest.py -------------------------------------------------------------------------------- /test_integration/contract_skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/contract_skills.py -------------------------------------------------------------------------------- /test_integration/docker/centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/docker/centos/Dockerfile -------------------------------------------------------------------------------- /test_integration/docker/centos/Dockerfile.no.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/docker/centos/Dockerfile.no.install -------------------------------------------------------------------------------- /test_integration/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/test_install.py -------------------------------------------------------------------------------- /test_integration/test_skill_fixit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/test_skill_fixit.py -------------------------------------------------------------------------------- /test_integration/test_skill_helpme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/test_skill_helpme.py -------------------------------------------------------------------------------- /test_integration/test_skill_howdoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/test_skill_howdoi.py -------------------------------------------------------------------------------- /test_integration/test_skill_manpageexplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/test_skill_manpageexplorer.py -------------------------------------------------------------------------------- /test_integration/test_skill_nlc2cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/test_skill_nlc2cmd.py -------------------------------------------------------------------------------- /test_integration/test_skill_tellina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/test_integration/test_skill_tellina.py -------------------------------------------------------------------------------- /uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/uninstall.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/uninstall.sh -------------------------------------------------------------------------------- /usersInstalled.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /utils/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/utils/.bash_profile -------------------------------------------------------------------------------- /utils/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/utils/.bashrc -------------------------------------------------------------------------------- /utils/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/utils/.profile -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/getMakeType.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/utils/getMakeType.sh -------------------------------------------------------------------------------- /utils/getVersionInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/clai/HEAD/utils/getVersionInfo.sh --------------------------------------------------------------------------------