gitcode-api 1.2.8__py3-none-any.whl → 1.2.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gitcode_api/llm/__init__.py +3 -0
- gitcode_api/llm/jiuwen.py +97 -0
- gitcode_api/version.txt +1 -1
- {gitcode_api-1.2.8.dist-info → gitcode_api-1.2.9.dist-info}/METADATA +28 -9
- {gitcode_api-1.2.8.dist-info → gitcode_api-1.2.9.dist-info}/RECORD +9 -8
- {gitcode_api-1.2.8.dist-info → gitcode_api-1.2.9.dist-info}/WHEEL +0 -0
- {gitcode_api-1.2.8.dist-info → gitcode_api-1.2.9.dist-info}/entry_points.txt +0 -0
- {gitcode_api-1.2.8.dist-info → gitcode_api-1.2.9.dist-info}/licenses/LICENSE +0 -0
- {gitcode_api-1.2.8.dist-info → gitcode_api-1.2.9.dist-info}/top_level.txt +0 -0
gitcode_api/llm/__init__.py
CHANGED
|
@@ -4,6 +4,7 @@ from importlib import import_module
|
|
|
4
4
|
from typing import TYPE_CHECKING, Any, Dict
|
|
5
5
|
|
|
6
6
|
if TYPE_CHECKING:
|
|
7
|
+
from .jiuwen import create_openjiuwen_gitcode_api_tool
|
|
7
8
|
from .mcp import (
|
|
8
9
|
GitCodeMCP,
|
|
9
10
|
create_mcp_gitcode_api_tool,
|
|
@@ -21,6 +22,7 @@ _IMPORT_MAP = {
|
|
|
21
22
|
"register_mcp_gitcode_api_tool": ".mcp",
|
|
22
23
|
"register_mcp_help_resources": ".mcp",
|
|
23
24
|
"GitCodeOpenAITool": ".openai",
|
|
25
|
+
"create_openjiuwen_gitcode_api_tool": ".jiuwen",
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
_IMPORT_CACHE: Dict[str, Any] = {}
|
|
@@ -54,4 +56,5 @@ __all__ = [
|
|
|
54
56
|
"create_mcp_server",
|
|
55
57
|
"register_mcp_gitcode_api_tool",
|
|
56
58
|
"register_mcp_help_resources",
|
|
59
|
+
"create_openjiuwen_gitcode_api_tool",
|
|
57
60
|
]
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
"""openJiuwen ``LocalFunction`` adapter for the GitCode LLM tool."""
|
|
2
|
+
|
|
3
|
+
from importlib import import_module
|
|
4
|
+
from typing import TYPE_CHECKING, Any, Callable, Dict, Optional
|
|
5
|
+
|
|
6
|
+
from gitcode_api import AsyncGitCode, GitCode
|
|
7
|
+
from gitcode_api._base_client import DEFAULT_BASE_URL
|
|
8
|
+
|
|
9
|
+
from ._tool import TOOL_DESCRIPTION, TOOL_NAME, TOOL_PARAMETERS, GitCodeLLMTool
|
|
10
|
+
|
|
11
|
+
if TYPE_CHECKING:
|
|
12
|
+
from openjiuwen.core.foundation.tool import LocalFunction
|
|
13
|
+
|
|
14
|
+
def _missing_openjiuwen_error() -> ImportError:
|
|
15
|
+
return ImportError(
|
|
16
|
+
"The openJiuwen tool support requires the optional dependency: pip install openjiuwen. "
|
|
17
|
+
"Note: Python 3.11+ is required for openjiuwen."
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def _openjiuwen_tool_decorator() -> Callable[..., Any]:
|
|
22
|
+
try:
|
|
23
|
+
mod = import_module("openjiuwen.core.foundation.tool")
|
|
24
|
+
except ImportError as exc:
|
|
25
|
+
raise _missing_openjiuwen_error() from exc
|
|
26
|
+
return getattr(mod, "tool") # type: ignore[no-any-return]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class _GitCodeJiuwenTool(GitCodeLLMTool):
|
|
30
|
+
"""Build an openJiuwen ``LocalFunction`` bound to :class:`GitCodeLLMTool` (async invoke only)."""
|
|
31
|
+
|
|
32
|
+
def __init__(self, *, name: Optional[str] = None, description: Optional[str] = None, **kwargs) -> None:
|
|
33
|
+
super().__init__(**kwargs)
|
|
34
|
+
tool_name = name if name is not None else TOOL_NAME
|
|
35
|
+
tool_description = description if description is not None else TOOL_DESCRIPTION
|
|
36
|
+
oj_tool = _openjiuwen_tool_decorator()
|
|
37
|
+
|
|
38
|
+
async def _async_impl(
|
|
39
|
+
op_type: str,
|
|
40
|
+
action: str = "",
|
|
41
|
+
params: Optional[Dict[str, Any]] = None,
|
|
42
|
+
help: bool = False,
|
|
43
|
+
) -> Any:
|
|
44
|
+
return await self.__async_call__(op_type=op_type, action=action, params=params, help=help)
|
|
45
|
+
|
|
46
|
+
self.local_function = oj_tool(
|
|
47
|
+
_async_impl,
|
|
48
|
+
name=tool_name,
|
|
49
|
+
description=tool_description,
|
|
50
|
+
input_params=TOOL_PARAMETERS,
|
|
51
|
+
auto_extract=False,
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def create_openjiuwen_gitcode_api_tool(
|
|
56
|
+
name: Optional[str] = None,
|
|
57
|
+
description: Optional[str] = None,
|
|
58
|
+
*,
|
|
59
|
+
client: Optional[GitCode] = None,
|
|
60
|
+
async_client: Optional[AsyncGitCode] = None,
|
|
61
|
+
api_key: Optional[str] = None,
|
|
62
|
+
owner: Optional[str] = None,
|
|
63
|
+
repo: Optional[str] = None,
|
|
64
|
+
base_url: str = DEFAULT_BASE_URL,
|
|
65
|
+
timeout: Optional[float] = None,
|
|
66
|
+
decrypt: Optional[Callable[..., Any]] = None,
|
|
67
|
+
) -> "LocalFunction":
|
|
68
|
+
"""Create an openJiuwen ``LocalFunction`` for the GitCode API tool.
|
|
69
|
+
|
|
70
|
+
:param name: Tool name on the ``LocalFunction`` card; defaults to ``gitcode_api_tool``.
|
|
71
|
+
:param description: Tool description on the card; defaults to the shared GitCode tool description.
|
|
72
|
+
:param client: Optional synchronous GitCode client.
|
|
73
|
+
:param async_client: Optional asynchronous GitCode client.
|
|
74
|
+
:param api_key: Personal access token when clients are not supplied.
|
|
75
|
+
:param owner: Default repository owner for generated clients.
|
|
76
|
+
:param repo: Default repository name for generated clients.
|
|
77
|
+
:param base_url: Base URL for generated clients.
|
|
78
|
+
:param timeout: Request timeout for generated clients.
|
|
79
|
+
:param decrypt: Optional decryption function for encrypted access tokens.
|
|
80
|
+
:returns: openJiuwen ``LocalFunction`` with the standard parameter schema.
|
|
81
|
+
"""
|
|
82
|
+
adapter = _GitCodeJiuwenTool(
|
|
83
|
+
client=client,
|
|
84
|
+
async_client=async_client,
|
|
85
|
+
api_key=api_key,
|
|
86
|
+
owner=owner,
|
|
87
|
+
repo=repo,
|
|
88
|
+
base_url=base_url,
|
|
89
|
+
timeout=timeout,
|
|
90
|
+
decrypt=decrypt,
|
|
91
|
+
name=name,
|
|
92
|
+
description=description,
|
|
93
|
+
)
|
|
94
|
+
return adapter.local_function
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
__all__ = ["create_openjiuwen_gitcode_api_tool"]
|
gitcode_api/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.9
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitcode-api
|
|
3
|
-
Version: 1.2.
|
|
4
|
-
Summary: Easy to use Python SDK for the GitCode REST API. Providing builtin CLI tool, and optional LLM integration (MCP and
|
|
3
|
+
Version: 1.2.9
|
|
4
|
+
Summary: Easy to use Python SDK for the GitCode REST API. Providing builtin CLI tool, and optional LLM integration (MCP, OpenAI tool, and openJiuwen tool) for agents. Community-maintained.
|
|
5
5
|
Author-email: Hugo Huang <hugo@hugohuang.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: changelog, https://gitcode-api.readthedocs.io/en/latest/changelog.html
|
|
@@ -11,7 +11,7 @@ Project-URL: gitcode, https://gitcode.com/SushiNinja/GitCode-API
|
|
|
11
11
|
Project-URL: github, https://github.com/Trenza1ore/GitCode-API
|
|
12
12
|
Project-URL: homepage, https://linktr.ee/Hugoooo
|
|
13
13
|
Project-URL: author, https://hugohuang.com
|
|
14
|
-
Keywords: gitcode,git,devops,api,sdk,python,httpx,client,mcp,agent,fastmcp,llm,mcp client,mcp server,model context protocol
|
|
14
|
+
Keywords: gitcode,git,devops,api,sdk,python,httpx,client,mcp,agent,fastmcp,llm,openjiuwen,mcp client,mcp server,model context protocol
|
|
15
15
|
Classifier: Development Status :: 4 - Beta
|
|
16
16
|
Classifier: Programming Language :: Python
|
|
17
17
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
@@ -38,12 +38,12 @@ Dynamic: license-file
|
|
|
38
38
|
# GitCode-API
|
|
39
39
|
|
|
40
40
|
[](https://pypi.org/project/gitcode-api) [](https://pepy.tech/projects/gitcode-api) [](https://www.codefactor.io/repository/github/trenza1ore/gitcode-api)
|
|
41
|
-
[](https://cursor.com/en/install-mcp?name=GitCode%20API&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyItLWZyb20iLCJnaXRjb2RlLWFwaVttY3BdIiwiZ2l0Y29kZS1hcGkiLCJzZXJ2ZSJdLCJlbnYiOnsiR0lUQ09ERV9BQ0NFU1NfVE9LRU4iOiIke2lucHV0OmdpdGNvZGVfYWNjZXNzX3Rva2VufSJ9LCJpbnB1dHMiOlt7ImlkIjoiZ2l0Y29kZV9hY2Nlc3NfdG9rZW4iLCJ0eXBlIjoicHJvbXB0U3RyaW5nIiwiZGVzY3JpcHRpb24iOiJFbnRlciBHSVRDT0RFX0FDQ0VTU19UT0tFTiIsInBhc3N3b3JkIjp0cnVlfV19) [](https://vscode.dev/redirect/mcp/install?name=GitCode%20API&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22--from%22%2C%22gitcode-api%5Bmcp%5D%22%2C%22gitcode-api%22%2C%22serve%22%5D%2C%22env%22%3A%7B%22GITCODE_ACCESS_TOKEN%22%3A%22%24%7Binput%3Agitcode_access_token%7D%22%7D%2C%22inputs%22%3A%5B%7B%22id%22%3A%22gitcode_access_token%22%2C%22type%22%3A%22promptString%22%2C%22description%22%3A%22Enter%20GITCODE_ACCESS_TOKEN%22%2C%22password%22%3Atrue%7D%5D%7D)
|
|
42
42
|
[](https://github.com/Trenza1ore/GitCode-API) [](https://gitcode.com/SushiNinja/GitCode-API)
|
|
43
43
|
|
|
44
44
|
[](https://gitcode-api.readthedocs.io) [](README.zh.md)
|
|
45
45
|
|
|
46
|
-
`gitcode-api` is a community-maintained Python SDK for the GitCode REST API. It provides easy-to-use synchronous and asynchronous clients, repository-scoped helpers, and lightweight response models so you can work with GitCode from Python without hand-writing raw HTTP requests. The `gitcode_api.llm` module adds an OpenAI-style function tool
|
|
46
|
+
`gitcode-api` is a community-maintained Python SDK for the GitCode REST API. It provides easy-to-use synchronous and asynchronous clients, repository-scoped helpers, and lightweight response models so you can work with GitCode from Python without hand-writing raw HTTP requests. The `gitcode_api.llm` module adds an OpenAI-style function tool, an MCP service, and an [openJiuwen](https://openjiuwen.com) tool integration so agents can reuse the same resource-oriented API.
|
|
47
47
|
|
|
48
48
|
## Why This Project
|
|
49
49
|
|
|
@@ -52,8 +52,9 @@ Dynamic: license-file
|
|
|
52
52
|
- Resource groups such as `client.repos`, `client.pulls`, and `client.users`.
|
|
53
53
|
- Repository defaults via `owner=` and `repo=` on the client.
|
|
54
54
|
- Sphinx docs plus a mirrored GitCode REST API reference in `docs/`.
|
|
55
|
-
- Provides MCP server
|
|
55
|
+
- Provides MCP server, OpenAI tool, and [openJiuwen](https://openjiuwen.com) tool for LLM agent usage.
|
|
56
56
|
- Provide MCP service that directly installs to your IDE of choice, such as Cursor and VS Code!
|
|
57
|
+
- Provides an [mcpb bundle](https://www.anthropic.com/engineering/desktop-extensions) you can install directly in the Claude desktop app; download it from [Release](https://github.com/Trenza1ore/GitCode-API/releases/latest).
|
|
57
58
|
|
|
58
59
|
## Installation
|
|
59
60
|
|
|
@@ -64,11 +65,11 @@ pip install -U gitcode-api
|
|
|
64
65
|
```
|
|
65
66
|
|
|
66
67
|
Install the MCP server to your AI-powered IDE of choice:
|
|
68
|
+
|
|
67
69
|
[](https://cursor.com/en/install-mcp?name=GitCode%20API&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyItLWZyb20iLCJnaXRjb2RlLWFwaVttY3BdIiwiZ2l0Y29kZS1hcGkiLCJzZXJ2ZSJdLCJlbnYiOnsiR0lUQ09ERV9BQ0NFU1NfVE9LRU4iOiIke2lucHV0OmdpdGNvZGVfYWNjZXNzX3Rva2VufSJ9LCJpbnB1dHMiOlt7ImlkIjoiZ2l0Y29kZV9hY2Nlc3NfdG9rZW4iLCJ0eXBlIjoicHJvbXB0U3RyaW5nIiwiZGVzY3JpcHRpb24iOiJFbnRlciBHSVRDT0RFX0FDQ0VTU19UT0tFTiIsInBhc3N3b3JkIjp0cnVlfV19)
|
|
68
70
|
[](https://vscode.dev/redirect/mcp/install?name=GitCode%20API&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22--from%22%2C%22gitcode-api%5Bmcp%5D%22%2C%22gitcode-api%22%2C%22serve%22%5D%2C%22env%22%3A%7B%22GITCODE_ACCESS_TOKEN%22%3A%22%24%7Binput%3Agitcode_access_token%7D%22%7D%2C%22inputs%22%3A%5B%7B%22id%22%3A%22gitcode_access_token%22%2C%22type%22%3A%22promptString%22%2C%22description%22%3A%22Enter%20GITCODE_ACCESS_TOKEN%22%2C%22password%22%3Atrue%7D%5D%7D)
|
|
69
71
|
[](https://insiders.vscode.dev/redirect/mcp/install?name=GitCode%20API&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22--from%22%2C%22gitcode-api%5Bmcp%5D%22%2C%22gitcode-api%22%2C%22serve%22%5D%2C%22env%22%3A%7B%22GITCODE_ACCESS_TOKEN%22%3A%22%24%7Binput%3Agitcode_access_token%7D%22%7D%2C%22inputs%22%3A%5B%7B%22id%22%3A%22gitcode_access_token%22%2C%22type%22%3A%22promptString%22%2C%22description%22%3A%22Enter%20GITCODE_ACCESS_TOKEN%22%2C%22password%22%3Atrue%7D%5D%7D&quality=insiders)
|
|
70
72
|
[](https://vs-open.link/mcp-install?%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22--from%22%2C%22gitcode-api%5Bmcp%5D%22%2C%22gitcode-api%22%2C%22serve%22%5D%2C%22env%22%3A%7B%22GITCODE_ACCESS_TOKEN%22%3A%22%24%7Binput%3Agitcode_access_token%7D%22%7D%2C%22inputs%22%3A%5B%7B%22id%22%3A%22gitcode_access_token%22%2C%22type%22%3A%22promptString%22%2C%22description%22%3A%22Enter%20GITCODE_ACCESS_TOKEN%22%2C%22password%22%3Atrue%7D%5D%7D)
|
|
71
|
-
[](https://block.github.io/goose/extension?cmd=uvx&arg=--from%2520gitcode-api%5Bmcp%5D%2520gitcode-api%2520serve&id=GitCode%20API&name=GitCode%20API&description=MCP%20Server%20for%20GitCode%20API)
|
|
72
73
|
[](https://lmstudio.ai/install-mcp?name=GitCode%20API&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyItLWZyb20iLCJnaXRjb2RlLWFwaVttY3BdIiwiZ2l0Y29kZS1hcGkiLCJzZXJ2ZSJdLCJlbnYiOnsiR0lUQ09ERV9BQ0NFU1NfVE9LRU4iOiIke2lucHV0OmdpdGNvZGVfYWNjZXNzX3Rva2VufSJ9LCJpbnB1dHMiOlt7ImlkIjoiZ2l0Y29kZV9hY2Nlc3NfdG9rZW4iLCJ0eXBlIjoicHJvbXB0U3RyaW5nIiwiZGVzY3JpcHRpb24iOiJFbnRlciBHSVRDT0RFX0FDQ0VTU19UT0tFTiIsInBhc3N3b3JkIjp0cnVlfV19)
|
|
73
74
|
|
|
74
75
|
For detailed setup (including installing to services like Claude Code / Codex): see [install_mcp_server.md](install_mcp_server.md).
|
|
@@ -228,7 +229,7 @@ Both `GitCode` and `AsyncGitCode` expose:
|
|
|
228
229
|
|
|
229
230
|
Every resource group inherits a cached `methods` property from the shared resource base: a `tuple` of public callable names in stable SDK order (underscore-segment sort key, not plain A–Z on the full identifier). Private names and the introspection helpers `methods` and `method_signature` are omitted. For example, `client.pulls.methods` helps with discovery or tooling without reading the full manual list. For one method’s parameters and return type, call `client.pulls.method_signature("list_issues")` (a cached string from `inspect.signature`, with `gitcode_api._models.` stripped from annotations).
|
|
230
231
|
|
|
231
|
-
## LLM tools and
|
|
232
|
+
## LLM tools, MCP, and openJiuwen
|
|
232
233
|
|
|
233
234
|
The `gitcode_api.llm` module exposes a single logical tool, **`gitcode_api_tool`**, that routes calls to sync or async SDK resources. Model-facing parameters match the JSON schema used by OpenAI-style function tools:
|
|
234
235
|
|
|
@@ -315,6 +316,24 @@ The same server is available from the CLI as `gitcode-api serve` (see the [CLI](
|
|
|
315
316
|
|
|
316
317
|
To share auth or clients across tools, build `GitCodeLLMTool` once (`from gitcode_api.llm._tool import GitCodeLLMTool`) and pass it as `tool=` into `GitCodeMCP`, `create_mcp_server`, `register_mcp_gitcode_api_tool`, or `create_mcp_gitcode_api_tool`.
|
|
317
318
|
|
|
319
|
+
### openJiuwen (`LocalFunction`)
|
|
320
|
+
|
|
321
|
+
[openJiuwen](https://openjiuwen.com) is an open agent platform. With the separate `openjiuwen` package installed (**Python 3.11+**), `create_openjiuwen_gitcode_api_tool` returns an openJiuwen `LocalFunction` that uses the same `op_type` / `action` / `params` / `help` arguments as the OpenAI adapter. Invocation is async-only (`await jiuwen_tool.invoke({...})`).
|
|
322
|
+
|
|
323
|
+
```bash
|
|
324
|
+
pip install openjiuwen
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
```python
|
|
328
|
+
from gitcode_api.llm import create_openjiuwen_gitcode_api_tool
|
|
329
|
+
|
|
330
|
+
jiuwen_tool = create_openjiuwen_gitcode_api_tool(owner="SushiNinja", repo="GitCode-API")
|
|
331
|
+
# jiuwen_tool.card — name, description, input_params
|
|
332
|
+
# await jiuwen_tool.invoke({"op_type": "repos", "action": "get", "params": {}})
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
Optional `name=` and `description=` override the default tool card. Constructor options otherwise mirror `GitCode` / `AsyncGitCode` (`client=`, `async_client=`, `api_key=`, `owner=`, `repo=`, `base_url=`, `timeout=`, `decrypt=`).
|
|
336
|
+
|
|
318
337
|
**Claude Desktop (MCPB):** published GitHub Releases include a `gitcode-<version>.mcpb` bundle for one-click installation as a Claude Desktop extension; see Anthropic’s guide, [Build a desktop extension with MCPB](https://claude.com/docs/connectors/building/mcpb). From a checkout you can run `make mcpb` (requires the [`@anthropic-ai/mcpb`](https://www.npmjs.com/package/@anthropic-ai/mcpb) CLI on your `PATH`).
|
|
319
338
|
|
|
320
339
|
## Examples
|
|
@@ -378,7 +397,7 @@ with GitCode(
|
|
|
378
397
|
|
|
379
398
|
Use `httpx.AsyncClient(verify=...)` with `AsyncGitCode` for async code.
|
|
380
399
|
|
|
381
|
-
The OpenAI tool (`GitCodeOpenAITool`)
|
|
400
|
+
The OpenAI tool (`GitCodeOpenAITool`), MCP helpers, and `create_openjiuwen_gitcode_api_tool` accept the same `client=` / `async_client=` arguments (OpenAI and MCP also accept a shared `GitCodeLLMTool` via `tool=`). Build `GitCode` / `AsyncGitCode` with your custom `http_client` once and pass it through so LLM tool calls reuse the same TLS settings.
|
|
382
401
|
|
|
383
402
|
## Project Status
|
|
384
403
|
|
|
@@ -9,9 +9,10 @@ gitcode_api/_models.py,sha256=v-GZzCGAb3_frY6wFiQww9m271U5MigivpEHDHnoDcI,109030
|
|
|
9
9
|
gitcode_api/cli.py,sha256=7LLDRCKJg7avaLgIwckZZC5LewSpMPWNQFFDRhAQkEs,16616
|
|
10
10
|
gitcode_api/py.typed,sha256=mDShSrm8qg9qjacQc2F-rI8ATllqP6EdgHuEYxuCXZ0,7
|
|
11
11
|
gitcode_api/run_mcp.py,sha256=a7zNrcAooGovzokJwTHQGj6iT4g7iltaUoD_E1KLvMg,130
|
|
12
|
-
gitcode_api/version.txt,sha256=
|
|
13
|
-
gitcode_api/llm/__init__.py,sha256=
|
|
12
|
+
gitcode_api/version.txt,sha256=yNg8JnLF45fOFqLuJ1rEWRcAK5s2dl932Z8xvfge6Cg,6
|
|
13
|
+
gitcode_api/llm/__init__.py,sha256=7xD9jHpk0eE12J8SQ3G0SB-8A0wEUoAsdx6SOBW6OUI,1604
|
|
14
14
|
gitcode_api/llm/_tool.py,sha256=mBQPYzQ-SuSWgumapcjv3pjGQfcPYt-IxUXBT5un2Lk,16239
|
|
15
|
+
gitcode_api/llm/jiuwen.py,sha256=7AqvBH4x0sCa4LxlRdImdph22mL6eSkCE0FL5BoMwzU,3637
|
|
15
16
|
gitcode_api/llm/mcp.py,sha256=eeAuEETZ4THw31wbcnQaTlZQJ-9ZolvsejQY630OqHs,5702
|
|
16
17
|
gitcode_api/llm/openai.py,sha256=CcS3tFntzAuN2HMbbQDctb54AnasU3n3a1Jr9LWAHwM,1998
|
|
17
18
|
gitcode_api/resources/__init__.py,sha256=nsCKW0bFDZ5ombJZxLThmO82sOuF7o4OKUMRkAmwbwk,1725
|
|
@@ -20,9 +21,9 @@ gitcode_api/resources/account.py,sha256=mnc2p7wI-nBnHFNdWPNiHfmZpT6d3RDQC777gewt
|
|
|
20
21
|
gitcode_api/resources/collaboration.py,sha256=8lyk78GTjVXddiE9fieutsMGovRjteGfTJcAhwLoR0M,101607
|
|
21
22
|
gitcode_api/resources/misc.py,sha256=guDwh4cxbTVsSa7EivaYM3bKMJ8_Op4KucGbKEoayKE,22412
|
|
22
23
|
gitcode_api/resources/repositories.py,sha256=EAK2znZhEsgVUu-NDEQslSEEYJzvb-kHuh4mW57y6sc,78178
|
|
23
|
-
gitcode_api-1.2.
|
|
24
|
-
gitcode_api-1.2.
|
|
25
|
-
gitcode_api-1.2.
|
|
26
|
-
gitcode_api-1.2.
|
|
27
|
-
gitcode_api-1.2.
|
|
28
|
-
gitcode_api-1.2.
|
|
24
|
+
gitcode_api-1.2.9.dist-info/licenses/LICENSE,sha256=gOACXuWhMu6PJKVLr9RQbxX3HULnZIGNXCaMFJIXhoA,1067
|
|
25
|
+
gitcode_api-1.2.9.dist-info/METADATA,sha256=01794VzZAr36F-7Eg0MeHGJuAmTSHciiUosdj18igBs,21768
|
|
26
|
+
gitcode_api-1.2.9.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
27
|
+
gitcode_api-1.2.9.dist-info/entry_points.txt,sha256=dIPylJcgohIE2RRIlt3In2WzcwDK8TOdkL_ReKuij4o,53
|
|
28
|
+
gitcode_api-1.2.9.dist-info/top_level.txt,sha256=gIlg0ptyOUHJT64ajOjWIhRPYgIQnMIvnhhnesw9fxU,12
|
|
29
|
+
gitcode_api-1.2.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|