gitlab-api 25.15.55__tar.gz → 25.16.0__tar.gz

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.
Files changed (51) hide show
  1. {gitlab_api-25.15.55/gitlab_api.egg-info → gitlab_api-25.16.0}/PKG-INFO +12 -9
  2. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/README.md +4 -4
  3. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api/__init__.py +3 -4
  4. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api/agent_server.py +2 -3
  5. gitlab_api-25.15.55/gitlab_api/api_wrapper.py → gitlab_api-25.16.0/gitlab_api/api_client.py +264 -244
  6. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api/auth.py +10 -10
  7. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api/gitlab_gql.py +396 -423
  8. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api/gitlab_input_models.py +517 -540
  9. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api/gitlab_response_models.py +1139 -1206
  10. gitlab_api-25.16.0/gitlab_api/mcp_config.json +3 -0
  11. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api/mcp_server.py +2160 -1649
  12. {gitlab_api-25.15.55 → gitlab_api-25.16.0/gitlab_api.egg-info}/PKG-INFO +12 -9
  13. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api.egg-info/SOURCES.txt +5 -14
  14. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api.egg-info/entry_points.txt +1 -0
  15. gitlab_api-25.16.0/gitlab_api.egg-info/requires.txt +17 -0
  16. gitlab_api-25.16.0/pyproject.toml +51 -0
  17. gitlab_api-25.16.0/requirements.txt +2 -0
  18. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/scripts/validate_agent.py +2 -2
  19. gitlab_api-25.15.55/test_template.py → gitlab_api-25.16.0/test_setup.py +4 -4
  20. gitlab_api-25.16.0/tests/__init__.py +0 -0
  21. gitlab_api-25.16.0/tests/conftest.py +68 -0
  22. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/tests/test_api_wrapper.py +36 -24
  23. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/tests/test_gitlab_a2a_validation.py +7 -4
  24. gitlab_api-25.16.0/tests/test_gitlab_api_brute_force_coverage.py +164 -0
  25. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/tests/test_gitlab_mcp_validation.py +5 -1
  26. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/tests/test_gitlab_models.py +593 -557
  27. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/tests/test_verify_agent.py +23 -20
  28. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/tests/verify_a2a_queries.py +3 -2
  29. gitlab_api-25.15.55/gitlab_api/agent_data/A2A_AGENTS.md +0 -12
  30. gitlab_api-25.15.55/gitlab_api/agent_data/CRON.md +0 -12
  31. gitlab_api-25.15.55/gitlab_api/agent_data/CRON_LOG.md +0 -56
  32. gitlab_api-25.15.55/gitlab_api/agent_data/HEARTBEAT.md +0 -30
  33. gitlab_api-25.15.55/gitlab_api/agent_data/IDENTITY.md +0 -45
  34. gitlab_api-25.15.55/gitlab_api/agent_data/MCP_AGENTS.md +0 -13
  35. gitlab_api-25.15.55/gitlab_api/agent_data/MEMORY.md +0 -8
  36. gitlab_api-25.15.55/gitlab_api/agent_data/USER.md +0 -7
  37. gitlab_api-25.15.55/gitlab_api/agent_data/chats +0 -3
  38. gitlab_api-25.15.55/gitlab_api/agent_data/icon.png +0 -3
  39. gitlab_api-25.15.55/gitlab_api/agent_data/mcp_config.json +0 -34
  40. gitlab_api-25.15.55/gitlab_api/agent_data/templates.py +0 -117
  41. gitlab_api-25.15.55/gitlab_api/mcp_config.json +0 -12
  42. gitlab_api-25.15.55/gitlab_api.egg-info/requires.txt +0 -13
  43. gitlab_api-25.15.55/pyproject.toml +0 -45
  44. gitlab_api-25.15.55/requirements.txt +0 -5
  45. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/LICENSE +0 -0
  46. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/MANIFEST.in +0 -0
  47. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api/__main__.py +0 -0
  48. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api.egg-info/dependency_links.txt +0 -0
  49. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/gitlab_api.egg-info/top_level.txt +0 -0
  50. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/scripts/validate_a2a_agent.py +2 -2
  51. {gitlab_api-25.15.55 → gitlab_api-25.16.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitlab-api
3
- Version: 25.15.55
3
+ Version: 25.16.0
4
4
  Summary: GitLab API + MCP Server + A2A Server
5
5
  Author-email: Audel Rouhi <knucklessg1@gmail.com>
6
6
  License: MIT
@@ -12,15 +12,18 @@ Classifier: Programming Language :: Python :: 3
12
12
  Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
- Requires-Dist: agent-utilities>=0.2.31
15
+ Requires-Dist: agent-utilities>=0.2.42
16
16
  Provides-Extra: mcp
17
- Requires-Dist: agent-utilities[mcp]>=0.2.31; extra == "mcp"
17
+ Requires-Dist: agent-utilities[mcp]>=0.2.42; extra == "mcp"
18
18
  Provides-Extra: agent
19
- Requires-Dist: agent-utilities[agent,logfire]>=0.2.31; extra == "agent"
19
+ Requires-Dist: agent-utilities[agent,logfire]>=0.2.42; extra == "agent"
20
20
  Provides-Extra: gql
21
21
  Requires-Dist: gql>=4.0.0; extra == "gql"
22
22
  Provides-Extra: all
23
- Requires-Dist: gitlab-api[agent,gql,logfire,mcp]>=25.15.15; extra == "all"
23
+ Requires-Dist: gitlab-api[agent,gql,logfire,mcp]>=25.15.56; extra == "all"
24
+ Provides-Extra: test
25
+ Requires-Dist: pytest; extra == "test"
26
+ Requires-Dist: pytest-asyncio; extra == "test"
24
27
  Dynamic: license-file
25
28
 
26
29
  # GitLab API - A2A | AG-UI | MCP
@@ -46,7 +49,7 @@ Dynamic: license-file
46
49
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/gitlab-api)
47
50
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
48
51
 
49
- *Version: 25.15.55*
52
+ *Version: 25.16.0*
50
53
 
51
54
  ## Overview
52
55
 
@@ -631,7 +634,7 @@ The A2A Server exposes a multi-agent system where a parent orchestrator delegate
631
634
 
632
635
  #### Run the A2A Server:
633
636
  ```bash
634
- gitlab-agent --provider openai --model-id qwen3:4b
637
+ gitlab-agent --provider openai --model-id nvidia/nemotron-3-super
635
638
  ```
636
639
 
637
640
  #### A2A CLI Configuration
@@ -642,7 +645,7 @@ gitlab-agent --provider openai --model-id qwen3:4b
642
645
  | --port | Port to bind the server to | 9000 |
643
646
  | --reload | Enable auto-reload | False |
644
647
  | --provider | LLM Provider (openai, anthropic, google, huggingface) | openai |
645
- | --model-id | LLM Model ID | qwen3:4b |
648
+ | --model-id | LLM Model ID | nvidia/nemotron-3-super |
646
649
  | --base-url | LLM Base URL (for OpenAI compatible providers) | http://ollama.arpa/v1 |
647
650
  | --api-key | LLM API Key | ollama |
648
651
  | --mcp-url | MCP Server URL to connect to | http://localhost:8000/mcp |
@@ -660,7 +663,7 @@ docker run -d -p 8000:8000 --name gitlab-mcp gitlab-api:latest gitlab-mcp --tran
660
663
  ```bash
661
664
  docker run -d -p 9000:9000 --name gitlab-agent gitlab-api:latest gitlab-agent \
662
665
  --provider openai \
663
- --model-id qwen3:4b \
666
+ --model-id nvidia/nemotron-3-super \
664
667
  --mcp-url http://host.docker.internal:8000/mcp
665
668
  ```
666
669
 
@@ -21,7 +21,7 @@
21
21
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/gitlab-api)
22
22
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
23
23
 
24
- *Version: 25.15.55*
24
+ *Version: 25.16.0*
25
25
 
26
26
  ## Overview
27
27
 
@@ -606,7 +606,7 @@ The A2A Server exposes a multi-agent system where a parent orchestrator delegate
606
606
 
607
607
  #### Run the A2A Server:
608
608
  ```bash
609
- gitlab-agent --provider openai --model-id qwen3:4b
609
+ gitlab-agent --provider openai --model-id nvidia/nemotron-3-super
610
610
  ```
611
611
 
612
612
  #### A2A CLI Configuration
@@ -617,7 +617,7 @@ gitlab-agent --provider openai --model-id qwen3:4b
617
617
  | --port | Port to bind the server to | 9000 |
618
618
  | --reload | Enable auto-reload | False |
619
619
  | --provider | LLM Provider (openai, anthropic, google, huggingface) | openai |
620
- | --model-id | LLM Model ID | qwen3:4b |
620
+ | --model-id | LLM Model ID | nvidia/nemotron-3-super |
621
621
  | --base-url | LLM Base URL (for OpenAI compatible providers) | http://ollama.arpa/v1 |
622
622
  | --api-key | LLM API Key | ollama |
623
623
  | --mcp-url | MCP Server URL to connect to | http://localhost:8000/mcp |
@@ -635,7 +635,7 @@ docker run -d -p 8000:8000 --name gitlab-mcp gitlab-api:latest gitlab-mcp --tran
635
635
  ```bash
636
636
  docker run -d -p 9000:9000 --name gitlab-agent gitlab-api:latest gitlab-agent \
637
637
  --provider openai \
638
- --model-id qwen3:4b \
638
+ --model-id nvidia/nemotron-3-super \
639
639
  --mcp-url http://host.docker.internal:8000/mcp
640
640
  ```
641
641
 
@@ -1,14 +1,13 @@
1
1
  import importlib
2
- import sys
3
2
  import inspect
4
- from typing import List
3
+ import sys
5
4
 
6
- __all__: List[str] = []
5
+ __all__: list[str] = []
7
6
 
8
7
  CORE_MODULES = [
9
8
  "gitlab_api.gitlab_input_models",
10
9
  "gitlab_api.gitlab_response_models",
11
- "gitlab_api.api_wrapper",
10
+ "gitlab_api.api_client",
12
11
  ]
13
12
 
14
13
  OPTIONAL_MODULES = {
@@ -1,8 +1,7 @@
1
1
  #!/usr/bin/python
2
- # coding: utf-8
2
+ import logging
3
3
  import os
4
4
  import sys
5
- import logging
6
5
  import warnings
7
6
 
8
7
  from agent_utilities import (
@@ -13,7 +12,7 @@ from agent_utilities import (
13
12
  load_identity,
14
13
  )
15
14
 
16
- __version__ = "25.15.55"
15
+ __version__ = "25.16.0"
17
16
 
18
17
  logging.basicConfig(
19
18
  level=logging.INFO,