blitzcoder 0.0.1__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 BlitzCoder Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,18 @@
1
+ include README.md
2
+ include LICENSE
3
+ include requirements.txt
4
+ include pyproject.toml
5
+ include setup.py
6
+ include build_and_publish.py
7
+
8
+ recursive-include blitz_cli/config/templates *
9
+ recursive-include blitz_cli/scripts *
10
+
11
+ global-exclude *.pyc
12
+ global-exclude *.pyo
13
+ global-exclude __pycache__
14
+ global-exclude .git*
15
+ global-exclude .DS_Store
16
+ global-exclude *.egg-info
17
+ global-exclude build/
18
+ global-exclude dist/
@@ -0,0 +1,228 @@
1
+ Metadata-Version: 2.4
2
+ Name: blitzcoder
3
+ Version: 0.0.1
4
+ Summary: AI-powered development assistant for code generation, refactoring, and project management
5
+ Home-page: https://github.com/Raghu6798/Blitz_Coder
6
+ Author: BlitzCoder Team
7
+ Author-email: BlitzCoder Team <raghunandanerukulla@gmail.com>
8
+ Maintainer-email: Raghu Nandan Erukulla <raghunandanerukulla@gmail.com>
9
+ License: MIT
10
+ Project-URL: Homepage, https://github.com/Raghu6798/BlitzCoder
11
+ Project-URL: Repository, https://github.com/Raghu6798/BlitzCoder
12
+ Project-URL: Documentation, https://github.com/Raghu6798/BlitzCoder#readme
13
+ Project-URL: Bug Tracker, https://github.com/Raghu6798/BlitzCoder/issues
14
+ Keywords: ai,code-generation,development,assistant,cli
15
+ Classifier: Development Status :: 4 - Beta
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: License :: OSI Approved :: MIT License
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Classifier: Topic :: Software Development :: Code Generators
26
+ Requires-Python: >=3.9
27
+ Description-Content-Type: text/markdown
28
+ License-File: LICENSE
29
+ Requires-Dist: python-dotenv>=0.0.1
30
+ Requires-Dist: langgraph>=0.4.9
31
+ Requires-Dist: langchain-groq>=0.3.4
32
+ Requires-Dist: langchain-sambanova>=0.1.5
33
+ Requires-Dist: langchain>=0.3.26
34
+ Requires-Dist: loguru>=0.7.3
35
+ Requires-Dist: langchain-google-genai>=2.1.5
36
+ Requires-Dist: mem0ai>=0.1.111
37
+ Requires-Dist: click>=8.1.8
38
+ Requires-Dist: click-help-colors>=0.9.4
39
+ Requires-Dist: rich>=14.0.0
40
+ Requires-Dist: langfuse>=3.0.5
41
+ Provides-Extra: dev
42
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
43
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
44
+ Requires-Dist: black>=22.0.0; extra == "dev"
45
+ Requires-Dist: isort>=5.0.0; extra == "dev"
46
+ Requires-Dist: flake8>=5.0.0; extra == "dev"
47
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
48
+ Dynamic: author
49
+ Dynamic: home-page
50
+ Dynamic: license-file
51
+ Dynamic: requires-python
52
+
53
+ # BlitzCoder
54
+
55
+ ⚡ **AI-Powered Development Assistant** - A comprehensive CLI tool for code generation, refactoring, and project management.
56
+
57
+ ## Features
58
+
59
+ - 🤖 **AI-Powered Code Generation** - Generate code using Google's Gemini model
60
+ - 🔧 **Code Refactoring** - Automatically refactor and improve existing code
61
+ - 📁 **Project Scaffolding** - Create complete project structures with architecture plans
62
+ - 🧠 **Memory System** - Remember previous conversations and context
63
+ - 🛠️ **Development Tools** - File inspection, execution, and management tools
64
+ - 🔍 **Code Analysis** - Explain and analyze code functionality
65
+
66
+ ## Installation
67
+
68
+ ### Option 1: Install from Source (Recommended)
69
+
70
+ ```bash
71
+ # Clone the repository
72
+ git clone https://github.com/Raghu6798/Blitz_Coder.git
73
+ cd BlitzCoder/blitz_cli
74
+
75
+ # Install in development mode
76
+ python install.py
77
+ ```
78
+
79
+ ### Option 2: Manual Installation
80
+
81
+ ```bash
82
+ cd blitz_cli
83
+ pip install -e .
84
+ ```
85
+
86
+ ### Option 3: Direct Script Execution
87
+
88
+ ```bash
89
+ # Windows
90
+ python scripts/blitzcoder.bat
91
+
92
+ # Linux/Mac
93
+ python scripts/blitzcoder
94
+ ```
95
+
96
+ ## Quick Start
97
+
98
+ ### 1. Set up your API Keys
99
+
100
+ You'll need a Google API key for the Gemini model:
101
+
102
+ ```bash
103
+ # Set environment variable
104
+ export GOOGLE_API_KEY="your-api-key-here"
105
+
106
+ # Or on Windows
107
+ set GOOGLE_API_KEY=your-api-key-here
108
+ ```
109
+
110
+ ### 2. Start Interactive Chat
111
+
112
+ ```bash
113
+ blitzcoder chat
114
+ ```
115
+
116
+ ### 3. Search Memories
117
+
118
+ ```bash
119
+ blitzcoder search-memories --query "your search term"
120
+ ```
121
+
122
+ ## Usage Examples
123
+
124
+ ### Interactive Chat Mode
125
+
126
+ ```bash
127
+ blitzcoder chat
128
+ ```
129
+
130
+ This starts an interactive session where you can:
131
+ - Ask questions about code
132
+ - Request code generation
133
+ - Get help with refactoring
134
+ - Search through previous conversations
135
+
136
+ ### Search Previous Conversations
137
+
138
+ ```bash
139
+ blitzcoder search-memories --query "React component"
140
+ ```
141
+
142
+ ### Use with API Key Parameter
143
+
144
+ ```bash
145
+ blitzcoder chat --google-api-key "your-api-key"
146
+ ```
147
+
148
+ ## Available Commands
149
+
150
+ | Command | Description |
151
+ |---------|-------------|
152
+ | `chat` | Start interactive AI chat session |
153
+ | `search-memories` | Search through conversation history |
154
+
155
+ ## Development
156
+
157
+ ### Project Structure
158
+
159
+ ```
160
+ blitz_cli/
161
+ ├── src/
162
+ │ └── blitzcoder/
163
+ │ ├── cli/
164
+ │ │ ├── __init__.py
165
+ │ │ └── cli_coder.py
166
+ │ └── __init__.py
167
+ ├── config/
168
+ │ └── templates/
169
+ ├── scripts/
170
+ │ ├── blitzcoder
171
+ │ └── blitzcoder.bat
172
+ ├── setup.py
173
+ ├── pyproject.toml
174
+ └── install.py
175
+ ```
176
+
177
+ ### Running Tests
178
+
179
+ ```bash
180
+ # Install development dependencies
181
+ pip install -e ".[dev]"
182
+
183
+ # Run tests
184
+ pytest
185
+ ```
186
+
187
+ ### Code Formatting
188
+
189
+ ```bash
190
+ # Format code
191
+ black src/
192
+ isort src/
193
+
194
+ # Type checking
195
+ mypy src/
196
+ ```
197
+
198
+ ## Configuration
199
+
200
+ The package uses environment variables for configuration:
201
+
202
+ - `GOOGLE_API_KEY` - Required for Gemini model access
203
+ - `GROQ_API_KEY` - Optional for additional models
204
+ - `NOVITA_API_KEY` - Optional for embeddings
205
+
206
+ ## Contributing
207
+
208
+ 1. Fork the repository
209
+ 2. Create a feature branch
210
+ 3. Make your changes
211
+ 4. Add tests if applicable
212
+ 5. Submit a pull request
213
+
214
+ ## License
215
+
216
+ This project is licensed under the MIT License - see the LICENSE file for details.
217
+
218
+ ## Support
219
+
220
+ - 📧 Email: raghunandanerukulla@gmail.com
221
+ - 🐛 Issues: [GitHub Issues](https://github.com/Raghu6798/BlitzCoder/issues)
222
+ - 📖 Documentation: [GitHub README](https://github.com/Raghu6798/BlitzCoder#readme)
223
+
224
+ ## Acknowledgments
225
+
226
+ - Built with [LangGraph](https://github.com/langchain-ai/langgraph)
227
+ - Powered by [Google Gemini](https://ai.google.dev/)
228
+ - Enhanced with [Rich](https://github.com/Textualize/rich) for beautiful CLI output
@@ -0,0 +1,176 @@
1
+ # BlitzCoder
2
+
3
+ ⚡ **AI-Powered Development Assistant** - A comprehensive CLI tool for code generation, refactoring, and project management.
4
+
5
+ ## Features
6
+
7
+ - 🤖 **AI-Powered Code Generation** - Generate code using Google's Gemini model
8
+ - 🔧 **Code Refactoring** - Automatically refactor and improve existing code
9
+ - 📁 **Project Scaffolding** - Create complete project structures with architecture plans
10
+ - 🧠 **Memory System** - Remember previous conversations and context
11
+ - 🛠️ **Development Tools** - File inspection, execution, and management tools
12
+ - 🔍 **Code Analysis** - Explain and analyze code functionality
13
+
14
+ ## Installation
15
+
16
+ ### Option 1: Install from Source (Recommended)
17
+
18
+ ```bash
19
+ # Clone the repository
20
+ git clone https://github.com/Raghu6798/Blitz_Coder.git
21
+ cd BlitzCoder/blitz_cli
22
+
23
+ # Install in development mode
24
+ python install.py
25
+ ```
26
+
27
+ ### Option 2: Manual Installation
28
+
29
+ ```bash
30
+ cd blitz_cli
31
+ pip install -e .
32
+ ```
33
+
34
+ ### Option 3: Direct Script Execution
35
+
36
+ ```bash
37
+ # Windows
38
+ python scripts/blitzcoder.bat
39
+
40
+ # Linux/Mac
41
+ python scripts/blitzcoder
42
+ ```
43
+
44
+ ## Quick Start
45
+
46
+ ### 1. Set up your API Keys
47
+
48
+ You'll need a Google API key for the Gemini model:
49
+
50
+ ```bash
51
+ # Set environment variable
52
+ export GOOGLE_API_KEY="your-api-key-here"
53
+
54
+ # Or on Windows
55
+ set GOOGLE_API_KEY=your-api-key-here
56
+ ```
57
+
58
+ ### 2. Start Interactive Chat
59
+
60
+ ```bash
61
+ blitzcoder chat
62
+ ```
63
+
64
+ ### 3. Search Memories
65
+
66
+ ```bash
67
+ blitzcoder search-memories --query "your search term"
68
+ ```
69
+
70
+ ## Usage Examples
71
+
72
+ ### Interactive Chat Mode
73
+
74
+ ```bash
75
+ blitzcoder chat
76
+ ```
77
+
78
+ This starts an interactive session where you can:
79
+ - Ask questions about code
80
+ - Request code generation
81
+ - Get help with refactoring
82
+ - Search through previous conversations
83
+
84
+ ### Search Previous Conversations
85
+
86
+ ```bash
87
+ blitzcoder search-memories --query "React component"
88
+ ```
89
+
90
+ ### Use with API Key Parameter
91
+
92
+ ```bash
93
+ blitzcoder chat --google-api-key "your-api-key"
94
+ ```
95
+
96
+ ## Available Commands
97
+
98
+ | Command | Description |
99
+ |---------|-------------|
100
+ | `chat` | Start interactive AI chat session |
101
+ | `search-memories` | Search through conversation history |
102
+
103
+ ## Development
104
+
105
+ ### Project Structure
106
+
107
+ ```
108
+ blitz_cli/
109
+ ├── src/
110
+ │ └── blitzcoder/
111
+ │ ├── cli/
112
+ │ │ ├── __init__.py
113
+ │ │ └── cli_coder.py
114
+ │ └── __init__.py
115
+ ├── config/
116
+ │ └── templates/
117
+ ├── scripts/
118
+ │ ├── blitzcoder
119
+ │ └── blitzcoder.bat
120
+ ├── setup.py
121
+ ├── pyproject.toml
122
+ └── install.py
123
+ ```
124
+
125
+ ### Running Tests
126
+
127
+ ```bash
128
+ # Install development dependencies
129
+ pip install -e ".[dev]"
130
+
131
+ # Run tests
132
+ pytest
133
+ ```
134
+
135
+ ### Code Formatting
136
+
137
+ ```bash
138
+ # Format code
139
+ black src/
140
+ isort src/
141
+
142
+ # Type checking
143
+ mypy src/
144
+ ```
145
+
146
+ ## Configuration
147
+
148
+ The package uses environment variables for configuration:
149
+
150
+ - `GOOGLE_API_KEY` - Required for Gemini model access
151
+ - `GROQ_API_KEY` - Optional for additional models
152
+ - `NOVITA_API_KEY` - Optional for embeddings
153
+
154
+ ## Contributing
155
+
156
+ 1. Fork the repository
157
+ 2. Create a feature branch
158
+ 3. Make your changes
159
+ 4. Add tests if applicable
160
+ 5. Submit a pull request
161
+
162
+ ## License
163
+
164
+ This project is licensed under the MIT License - see the LICENSE file for details.
165
+
166
+ ## Support
167
+
168
+ - 📧 Email: raghunandanerukulla@gmail.com
169
+ - 🐛 Issues: [GitHub Issues](https://github.com/Raghu6798/BlitzCoder/issues)
170
+ - 📖 Documentation: [GitHub README](https://github.com/Raghu6798/BlitzCoder#readme)
171
+
172
+ ## Acknowledgments
173
+
174
+ - Built with [LangGraph](https://github.com/langchain-ai/langgraph)
175
+ - Powered by [Google Gemini](https://ai.google.dev/)
176
+ - Enhanced with [Rich](https://github.com/Textualize/rich) for beautiful CLI output
@@ -0,0 +1,86 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "blitzcoder"
7
+ version = "0.0.1"
8
+ description = "AI-powered development assistant for code generation, refactoring, and project management"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [
12
+ {name = "BlitzCoder Team", email = "raghunandanerukulla@gmail.com"}
13
+ ]
14
+ maintainers = [
15
+ {name = "Raghu Nandan Erukulla", email = "raghunandanerukulla@gmail.com"}
16
+ ]
17
+ keywords = ["ai", "code-generation", "development", "assistant", "cli"]
18
+ classifiers = [
19
+ "Development Status :: 4 - Beta",
20
+ "Intended Audience :: Developers",
21
+ "License :: OSI Approved :: MIT License",
22
+ "Operating System :: OS Independent",
23
+ "Programming Language :: Python :: 3",
24
+ "Programming Language :: Python :: 3.9",
25
+ "Programming Language :: Python :: 3.10",
26
+ "Programming Language :: Python :: 3.11",
27
+ "Programming Language :: Python :: 3.12",
28
+ "Topic :: Software Development :: Libraries :: Python Modules",
29
+ "Topic :: Software Development :: Code Generators",
30
+ ]
31
+ requires-python = ">=3.9"
32
+ dependencies = [
33
+ "python-dotenv>=0.0.1",
34
+ "langgraph>=0.4.9",
35
+ "langchain-groq>=0.3.4",
36
+ "langchain-sambanova>=0.1.5",
37
+ "langchain>=0.3.26",
38
+ "loguru>=0.7.3",
39
+ "langchain-google-genai>=2.1.5",
40
+ "mem0ai>=0.1.111",
41
+ "click>=8.1.8",
42
+ "click-help-colors>=0.9.4",
43
+ "rich>=14.0.0",
44
+ "langfuse>=3.0.5",
45
+ ]
46
+
47
+ [project.optional-dependencies]
48
+ dev = [
49
+ "pytest>=7.0.0",
50
+ "pytest-cov>=4.0.0",
51
+ "black>=22.0.0",
52
+ "isort>=5.0.0",
53
+ "flake8>=5.0.0",
54
+ "mypy>=1.0.0",
55
+ ]
56
+
57
+ [project.scripts]
58
+ blitzcoder = "blitzcoder.cli.cli_coder:cli"
59
+
60
+ [project.urls]
61
+ Homepage = "https://github.com/Raghu6798/BlitzCoder"
62
+ Repository = "https://github.com/Raghu6798/BlitzCoder"
63
+ Documentation = "https://github.com/Raghu6798/BlitzCoder#readme"
64
+ "Bug Tracker" = "https://github.com/Raghu6798/BlitzCoder/issues"
65
+
66
+ [tool.setuptools.packages.find]
67
+ where = ["src"]
68
+
69
+ [tool.setuptools.package-data]
70
+ "*" = ["*.txt", "*.md", "*.yml", "*.yaml"]
71
+
72
+ [tool.black]
73
+ line-length = 88
74
+ target-version = ['py39']
75
+ include = '\.pyi?$'
76
+
77
+ [tool.isort]
78
+ profile = "black"
79
+ multi_line_output = 3
80
+ line_length = 88
81
+
82
+ [tool.mypy]
83
+ python_version = "3.9"
84
+ warn_return_any = true
85
+ warn_unused_configs = true
86
+ disallow_untyped_defs = true
@@ -0,0 +1,187 @@
1
+ # This file was autogenerated by uv via the following command:
2
+ # uv pip compile pyproject.toml -o requirements.txt
3
+ annotated-types==0.7.0
4
+ # via pydantic
5
+ anyio==4.9.0
6
+ # via
7
+ # groq
8
+ # httpx
9
+ cachetools==5.5.2
10
+ # via google-auth
11
+ certifi==2025.6.15
12
+ # via
13
+ # httpcore
14
+ # httpx
15
+ # requests
16
+ charset-normalizer==3.4.2
17
+ # via requests
18
+ colorama==0.4.6
19
+ # via loguru
20
+ distro==1.9.0
21
+ # via groq
22
+ filetype==1.2.0
23
+ # via langchain-google-genai
24
+ google-ai-generativelanguage==0.6.18
25
+ # via langchain-google-genai
26
+ google-api-core==2.25.1
27
+ # via google-ai-generativelanguage
28
+ google-auth==2.40.3
29
+ # via
30
+ # google-ai-generativelanguage
31
+ # google-api-core
32
+ googleapis-common-protos==1.70.0
33
+ # via
34
+ # google-api-core
35
+ # grpcio-status
36
+ greenlet==3.2.3
37
+ # via sqlalchemy
38
+ groq==0.28.0
39
+ # via langchain-groq
40
+ grpcio==1.73.0
41
+ # via
42
+ # google-api-core
43
+ # grpcio-status
44
+ grpcio-status==1.73.0
45
+ # via google-api-core
46
+ h11==0.16.0
47
+ # via httpcore
48
+ httpcore==1.0.9
49
+ # via httpx
50
+ httpx==0.28.1
51
+ # via
52
+ # groq
53
+ # langgraph-sdk
54
+ # langsmith
55
+ idna==3.10
56
+ # via
57
+ # anyio
58
+ # httpx
59
+ # requests
60
+ jsonpatch==1.33
61
+ # via langchain-core
62
+ jsonpointer==3.0.0
63
+ # via jsonpatch
64
+ langchain==0.3.26
65
+ # via
66
+ # my-project (pyproject.toml)
67
+ # langchain-sambanova
68
+ langchain-core==0.3.66
69
+ # via
70
+ # langchain
71
+ # langchain-google-genai
72
+ # langchain-groq
73
+ # langchain-sambanova
74
+ # langchain-text-splitters
75
+ # langgraph
76
+ # langgraph-checkpoint
77
+ # langgraph-prebuilt
78
+ langchain-google-genai==2.1.5
79
+ # via my-project (pyproject.toml)
80
+ langchain-groq==0.3.4
81
+ # via my-project (pyproject.toml)
82
+ langchain-sambanova==0.1.5
83
+ # via my-project (pyproject.toml)
84
+ langchain-text-splitters==0.3.8
85
+ # via langchain
86
+ langgraph==0.4.9
87
+ # via my-project (pyproject.toml)
88
+ langgraph-checkpoint==2.1.0
89
+ # via
90
+ # langgraph
91
+ # langgraph-prebuilt
92
+ langgraph-prebuilt==0.2.2
93
+ # via langgraph
94
+ langgraph-sdk==0.1.70
95
+ # via langgraph
96
+ langsmith==0.4.1
97
+ # via
98
+ # langchain
99
+ # langchain-core
100
+ loguru==0.7.3
101
+ # via my-project (pyproject.toml)
102
+ orjson==3.10.18
103
+ # via
104
+ # langgraph-sdk
105
+ # langsmith
106
+ ormsgpack==1.10.0
107
+ # via langgraph-checkpoint
108
+ packaging==24.2
109
+ # via
110
+ # langchain-core
111
+ # langsmith
112
+ proto-plus==1.26.1
113
+ # via
114
+ # google-ai-generativelanguage
115
+ # google-api-core
116
+ protobuf==6.31.1
117
+ # via
118
+ # google-ai-generativelanguage
119
+ # google-api-core
120
+ # googleapis-common-protos
121
+ # grpcio-status
122
+ # proto-plus
123
+ pyasn1==0.6.1
124
+ # via
125
+ # pyasn1-modules
126
+ # rsa
127
+ pyasn1-modules==0.4.2
128
+ # via google-auth
129
+ pydantic==2.11.7
130
+ # via
131
+ # groq
132
+ # langchain
133
+ # langchain-core
134
+ # langchain-google-genai
135
+ # langgraph
136
+ # langsmith
137
+ pydantic-core==2.33.2
138
+ # via pydantic
139
+ python-dotenv==1.1.1
140
+ # via my-project (pyproject.toml)
141
+ pyyaml==6.0.2
142
+ # via
143
+ # langchain
144
+ # langchain-core
145
+ requests==2.32.4
146
+ # via
147
+ # google-api-core
148
+ # langchain
149
+ # langsmith
150
+ # requests-toolbelt
151
+ requests-toolbelt==1.0.0
152
+ # via langsmith
153
+ rsa==4.9.1
154
+ # via google-auth
155
+ sniffio==1.3.1
156
+ # via
157
+ # anyio
158
+ # groq
159
+ sqlalchemy==2.0.41
160
+ # via langchain
161
+ sseclient-py==1.8.0
162
+ # via langchain-sambanova
163
+ tenacity==9.1.2
164
+ # via langchain-core
165
+ types-requests==2.32.4.20250611
166
+ # via langchain-sambanova
167
+ typing-extensions==4.14.0
168
+ # via
169
+ # anyio
170
+ # groq
171
+ # langchain-core
172
+ # pydantic
173
+ # pydantic-core
174
+ # sqlalchemy
175
+ # typing-inspection
176
+ typing-inspection==0.4.1
177
+ # via pydantic
178
+ urllib3==2.5.0
179
+ # via
180
+ # requests
181
+ # types-requests
182
+ win32-setctime==1.2.0
183
+ # via loguru
184
+ xxhash==3.5.0
185
+ # via langgraph
186
+ zstandard==0.23.0
187
+ # via langsmith
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+