{"id":22161131,"url":"https://github.com/mr-destructive/steampipe-plugin-cohereai","last_synced_at":"2025-10-10T08:35:20.769Z","repository":{"id":178599811,"uuid":"660261923","full_name":"Mr-Destructive/steampipe-plugin-cohereai","owner":"Mr-Destructive","description":"Steampipe Plugin for Cohere AI","archived":false,"fork":false,"pushed_at":"2023-12-25T14:48:57.000Z","size":181,"stargazers_count":2,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-10T08:34:14.180Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mr-Destructive.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-06-29T15:48:32.000Z","updated_at":"2023-07-12T05:54:25.000Z","dependencies_parsed_at":"2023-12-25T16:34:56.198Z","dependency_job_id":"6379987b-ddb5-4f19-98b5-15d61288444a","html_url":"https://github.com/Mr-Destructive/steampipe-plugin-cohereai","commit_stats":null,"previous_names":["mr-destructive/steampipe-plugin-cohereai"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Mr-Destructive/steampipe-plugin-cohereai","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-cohereai","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-cohereai/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-cohereai/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-cohereai/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mr-Destructive","download_url":"https://codeload.github.com/Mr-Destructive/steampipe-plugin-cohereai/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Destructive%2Fsteampipe-plugin-cohereai/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003294,"owners_count":26083555,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-02T04:13:17.322Z","updated_at":"2025-10-10T08:35:20.754Z","avatar_url":"https://github.com/Mr-Destructive.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![image](https://hub.steampipe.io/images/plugins/Mr-Destructive/cohereai-social-graphic.png)\n\n# Cohere-AI Plugin for Steampipe\n\nUse SQL to generate, classify, summarize text and more from CohereAI.\n\n- **[Get started →](https://hub.steampipe.io/plugins/mr-destructive/cohereai)**\n- Documentation: [Table definitions \u0026 examples](https://hub.steampipe.io/plugins/mr-destructive/cohereai/tables)\n- Community: [Slack Channel](https://steampipe.io/community/join)\n- Get involved: [Issues](https://github.com/mr-destructive/steampipe-plugin-cohereai/issues)\n\n## Quick start\n\nInstall the plugin with [Steampipe](https://steampipe.io):\n\n```shell\nsteampipe plugin install mr-destructive/cohereai\n```\n\nConfigure your API key in `~/.steampipe/config/cohereai.spc`:\n\n```hcl\nconnection \"cohereai\" {\n  plugin = \"mr-destructive/cohereai\"\n\n  # API key for requests. Required.\n  # Get your API key at https://dashboard.cohere.ai/api-keys\n  # This can also be set via the `COHEREAI_API_KEY` environment variable.\n  api_key = \"asLGEMKWMfkeFKENW038493fnWeng\"\n}\n```\n\nOr through environment variables:\n\n```\nexport COHEREAI_API_KEY=asLGEMKWMfkeFKENW038493fnWeng\n```\n\nRun steampipe:\n\n```shell\nsteampipe query\n```\n\nRun a query:\n\n```sql\nselect\n  generation\nfrom\n  cohereai_generation\nwhere\n  prompt = '';\n```\n\n## Developing\n\nPrerequisites:\n\n- [Steampipe](https://steampipe.io/downloads)\n- [Golang](https://golang.org/doc/install)\n\nClone:\n\n```sh\ngit clone https://github.com/mr-destructive/steampipe-plugin-cohereai.git\ncd steampipe-plugin-cohereai\n```\n\nBuild, which automatically installs the new version to your `~/.steampipe/plugins` directory:\n\n```\nmake\n```\n\nConfigure the plugin:\n\n```\ncp config/* ~/.steampipe/config\nvi ~/.steampipe/config/cohereai.spc\n```\n\nTry it!\n\n```\nsteampipe query\n\u003e .inspect cohereai\n```\n\nFurther reading:\n\n- [Writing plugins](https://steampipe.io/docs/develop/writing-plugins)\n- [Writing your first table](https://steampipe.io/docs/develop/writing-your-first-table)\n\n## Contributing\n\nPlease see the [contribution guidelines](https://github.com/turbot/steampipe/blob/main/CONTRIBUTING.md) and our [code of conduct](https://github.com/turbot/steampipe/blob/main/CODE_OF_CONDUCT.md). All contributions are subject to the [Apache 2.0 open source license](https://github.com/turbot/steampipe-plugin-cohereai/blob/main/LICENSE).\n\n`help wanted` issues:\n\n- [Steampipe](https://github.com/turbot/steampipe/labels/help%20wanted)\n- [Cohere AI Plugin](https://github.com/mr-destructive/steampipe-plugin-cohereai/labels/help%20wanted)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-destructive%2Fsteampipe-plugin-cohereai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmr-destructive%2Fsteampipe-plugin-cohereai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-destructive%2Fsteampipe-plugin-cohereai/lists"}