{"id":23934232,"url":"https://github.com/assister-xyz/slm-integrations","last_synced_at":"2025-09-11T17:31:39.634Z","repository":{"id":267284098,"uuid":"900745911","full_name":"assister-xyz/slm-integrations","owner":"assister-xyz","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-09T12:54:06.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-09T13:46:11.979Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/assister-xyz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-09T11:53:29.000Z","updated_at":"2024-12-09T12:54:11.000Z","dependencies_parsed_at":"2024-12-09T13:46:15.356Z","dependency_job_id":"a6359979-5a58-4e90-bf97-99daa5b92fc7","html_url":"https://github.com/assister-xyz/slm-integrations","commit_stats":null,"previous_names":["assister-xyz/slm-integrations"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assister-xyz%2Fslm-integrations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assister-xyz%2Fslm-integrations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assister-xyz%2Fslm-integrations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/assister-xyz%2Fslm-integrations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/assister-xyz","download_url":"https://codeload.github.com/assister-xyz/slm-integrations/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232658910,"owners_count":18557005,"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","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":"2025-01-06T00:34:42.740Z","updated_at":"2025-01-06T00:35:34.388Z","avatar_url":"https://github.com/assister-xyz.png","language":null,"funding_links":[],"categories":["Core Tools and Resources"],"sub_categories":["Assisterr"],"readme":"# ASSISTERR Documentation\n\n### How to login to Assisterr?\n`https://assisterr.gitbook.io/assisterr/product-guides/login-slm-store`\n### How to find SLM's on Assisterr?\n`https://assisterr.gitbook.io/assisterr/product-guides/slm-store`\n### How to create your own SLM?\n`https://assisterr.gitbook.io/assisterr/product-guides/create-your-first-slm`\n### How to integrate SLM with API?\n`https://assisterr.gitbook.io/assisterr/product-guides/assisterr-slm-integration`\n\n---\n\n# API Documentation\n\n## Base URL\n`https://api.assisterr.ai/`\n\n---\n\n## Endpoints\n\n### 1. [POST] /api/v1/slm/{handle_name}/chat/\n**Description:** Request to receive a response from SLM without context binding (without keeping history).\n\n**Headers:**\n| Header       | Required | Example Value                                         | Description                |\n|--------------|----------|-------------------------------------------------------|----------------------------|\n| `X-Api-Key`  | Yes      | `your_token`                                          | API Key for authentication.|\n\n**Path Parameters:**\n| Parameter      | Type   | Required | Description                       |\n|----------------|--------|----------|-----------------------------------|\n| `handle_name`  | string | Yes      | Unique identifier for the slm.    |\n\n**Request Body (JSON):**\n```json\n{\n  \"query\": \"Your query here\"\n}\n```\n\n### 2. [POST] /api/v1/slm/{handle_name}/chat/stream/\n**Description:** Request to receive a stream (SSE) response from SLM without context binding (without keeping history).\n\n**Headers:**\n| Header       | Required | Example Value        | Description                |\n|--------------|----------|----------------------|----------------------------|\n| `X-Api-Key`  | Yes      | `your_token`         | API Key for authentication.|\n\n**Path Parameters:**\n| Parameter      | Type   | Required | Description                       |\n|----------------|--------|----------|-----------------------------------|\n| `handle_name`  | string | Yes      | Unique identifier for the slm.    |\n\n**Request Body (JSON):**\n```json\n{\n  \"query\": \"Your query here\"\n}\n```\n\n### 3. [POST] /api/v1/slm/{handle_name}/session/create/\n**Description:** Request to receive a session ID.\n\n**Headers:**\n| Header       | Required | Example Value        | Description                |\n|--------------|----------|----------------------|----------------------------|\n| `X-Api-Key`  | Yes      | `your_token`         | API Key for authentication.|\n\n**Path Parameters:**\n| Parameter      | Type   | Required | Description                       |\n|----------------|--------|----------|-----------------------------------|\n| `handle_name`  | string | Yes      | Unique identifier for the slm.    |\n\n**Respponse Body (JSON):**\n```json\n\"1234567891234\"\n```\n\n\n### 4. [POST] /api/v1/slm/{handle_name}/session/{slm_session_id}/chat/\n**Description:** Request to receive a response from SLM with context binding (with keeping history).\n\n**Headers:**\n| Header       | Required | Example Value                                         | Description                |\n|--------------|----------|-------------------------------------------------------|----------------------------|\n| `X-Api-Key`  | Yes      | `your_token`                                          | API Key for authentication.|\n\n**Path Parameters:**\n| Parameter         | Type   | Required | Description                       |\n|-------------------|--------|----------|-----------------------------------|\n| `handle_name`     | string | Yes      | Unique identifier for the slm.    |\n| `slm_session_id`  | string | Yes      | Unique session identifier.        |\n\n**Request Body (JSON):**\n```json\n{\n  \"query\": \"Your query here\"\n}\n```\n\n\n### 5. [POST] /api/v1/slm/{handle_name}/session/{slm_session_id}/chat/stream\n**Description:** Request to receive a stream (SSE) response from SLM with context binding (with keeping history).\n\n**Headers:**\n| Header       | Required | Example Value                                         | Description                |\n|--------------|----------|-------------------------------------------------------|----------------------------|\n| `X-Api-Key`  | Yes      | `your_token`                                          | API Key for authentication.|\n\n**Path Parameters:**\n| Parameter         | Type   | Required | Description                       |\n|-------------------|--------|----------|-----------------------------------|\n| `handle_name`     | string | Yes      | Unique identifier for the slm.    |\n| `slm_session_id`  | string | Yes      | Unique session identifier.        |\n\n**Request Body (JSON):**\n```json\n{\n  \"query\": \"Your query here\"\n}\n```\n\n\n### 6. [GET] /api/v1/slm/{handle_name}/session/list/\n**Description:** Request to receive a list of all sessions.\n\n**Headers:**\n| Header       | Required | Example Value                                         | Description                |\n|--------------|----------|-------------------------------------------------------|----------------------------|\n| `X-Api-Key`  | Yes      | `your_token`                                          | API Key for authentication.|\n\n**Path Parameters:**\n| Parameter         | Type   | Required | Description                       |\n|-------------------|--------|----------|-----------------------------------|\n| `handle_name`     | string | Yes      | Unique identifier for the slm.    |\n| `slm_session_id`  | string | Yes      | Unique session identifier.        |\n\n\n\n### 7. [GET] /api/v1/slm/{handle_name}/session/{slm_session_id}/history/\n**Description:** Request to receive a conversation of session.\n\n**Headers:**\n| Header       | Required | Example Value                                         | Description                |\n|--------------|----------|-------------------------------------------------------|----------------------------|\n| `X-Api-Key`  | Yes      | `your_token`                                          | API Key for authentication.|\n\n**Path Parameters:**\n| Parameter         | Type   | Required | Description                       |\n|-------------------|--------|----------|-----------------------------------|\n| `handle_name`     | string | Yes      | Unique identifier for the slm.    |\n| `slm_session_id`  | string | Yes      | Unique session identifier.        |\n\n\n### 8. [DELETE] /api/v1/slm/{handle_name}/session/{slm_session_id}/\n**Description:** Delete session\n\n**Headers:**\n| Header       | Required | Example Value                                         | Description                |\n|--------------|----------|-------------------------------------------------------|----------------------------|\n| `X-Api-Key`  | Yes      | `your_token`                                          | API Key for authentication.|\n\n**Path Parameters:**\n| Parameter         | Type   | Required | Description                       |\n|-------------------|--------|----------|-----------------------------------|\n| `handle_name`     | string | Yes      | Unique identifier for the slm.    |\n| `slm_session_id`  | string | Yes      | Unique session identifier.        |\n\n\n---\n\n# Examples\n\nExamples folder contains examples notebooks on how to use Assisterr SLMs.\nFrom Basic API usage to SLM as agent like Automatic X poster or Solana onchain bot.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fassister-xyz%2Fslm-integrations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fassister-xyz%2Fslm-integrations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fassister-xyz%2Fslm-integrations/lists"}