{"id":38246985,"url":"https://github.com/rvinnie/deepseek-sdk-go","last_synced_at":"2026-01-17T01:24:26.819Z","repository":{"id":278628239,"uuid":"933712785","full_name":"rvinnie/deepseek-sdk-go","owner":"rvinnie","description":"Deepseek SDK for the Golang","archived":false,"fork":false,"pushed_at":"2025-02-20T19:20:04.000Z","size":25,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-15T17:38:13.512Z","etag":null,"topics":["deepseek","deepseek-chat","deepseek-go","deepseek-r1","go","golang","streaming-api"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rvinnie.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2025-02-16T14:26:04.000Z","updated_at":"2025-04-17T13:57:29.000Z","dependencies_parsed_at":"2025-02-20T20:28:03.212Z","dependency_job_id":null,"html_url":"https://github.com/rvinnie/deepseek-sdk-go","commit_stats":null,"previous_names":["rvinnie/deepseek-sdk-go"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rvinnie/deepseek-sdk-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvinnie%2Fdeepseek-sdk-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvinnie%2Fdeepseek-sdk-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvinnie%2Fdeepseek-sdk-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvinnie%2Fdeepseek-sdk-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rvinnie","download_url":"https://codeload.github.com/rvinnie/deepseek-sdk-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvinnie%2Fdeepseek-sdk-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28491430,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T00:50:05.742Z","status":"ssl_error","status_checked_at":"2026-01-17T00:43:11.982Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["deepseek","deepseek-chat","deepseek-go","deepseek-r1","go","golang","streaming-api"],"created_at":"2026-01-17T01:24:26.122Z","updated_at":"2026-01-17T01:24:26.812Z","avatar_url":"https://github.com/rvinnie.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n[![Golang](https://img.shields.io/badge/Go-v1.21-EEEEEE?logo=go\u0026logoColor=white\u0026labelColor=00ADD8)](https://go.dev/)\n\n\u003cdiv align=\"center\"\u003e\n    \u003ch1 align=\"center\"\u003eDeepseek API Golang Client Library\n    \u003c/h1\u003e\n    \u003ch3 align=\"center\"\u003eClient for \u003ca href=\"https://api-docs.deepseek.com/\"\u003eDeepseek API\u003c/a\u003e\n    \u003c/h3\u003e\n    \u003cp align=\"center\"\u003e\n        English | \u003ca href=\"README.zh.md\"\u003e中文\u003c/a\u003e | \u003ca href=\"README.ru.md\"\u003eРусский\u003c/a\u003e\n    \u003c/p\u003e\n\u003c/div\u003e\n\n### Installation\n`go get github.com/rvinnie/deepseek-sdk-go`\n\n### Getting Started\n1. Import the module\n```golang\nimport \"github.com/rvinnie/deepseek-sdk-go/deepseek\"\n```\n2. Create a Deepseek API client\n```golang\nimport \"github.com/rvinnie/deepseek-sdk-go/deepseek\"\n\nfunc main() {\n    client, err := deepseek.NewClient(\"API_TOKEN\")\n    if err != nil { \n       // Handle error\n    }\n}\n```\n3. Call the desired API method. [See Deepseek API documentation](https://api-docs.deepseek.com/api/deepseek-api)\n\n## SDK Usage Examples\n#### [Deepseek API SDK Configuration](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/01-configuration.md)\n* [Authentication](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/01-configuration.md#authentication)\n#### [Chat Operations](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/02-chat-completions.md)\n* [Create Chat Request](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/02-chat-completions.md#create-chat-request)\n* [Streaming Content](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/02-chat-completions.md#streaming-content)\n#### [Chat Operations (Fill-In-the-Middle)](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/03-fim-completions.md)\n* [Create Chat Request](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/03-fim-completions.md#create-chat-request)\n#### [Model Operations](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/04-models.md)\n* [List Available Models](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/04-models.md#list-available-models)\n#### [Account Operations](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/05-user.md)\n* [Get User Balance](https://github.com/rvinnie/deepseek-sdk-go/blob/main/docs/examples/05-user.md#get-user-balance)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frvinnie%2Fdeepseek-sdk-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frvinnie%2Fdeepseek-sdk-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frvinnie%2Fdeepseek-sdk-go/lists"}