File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Directory Tree
2+
3+ This document shows the overall structure of the AgentAdapter repository.
4+
5+ ```
6+ .
7+ ├── LICENSE
8+ ├── README.md
9+ ├── docs/
10+ │ ├── claude4_5/
11+ │ │ ├── docs/ # Claude 4.5 documentation files
12+ │ │ ├── examples/ # Claude 4.5 example code
13+ │ │ ├── readme.python.md
14+ │ │ └── readme.typescript.md
15+ │ ├── gemini3/
16+ │ │ ├── docs/ # Gemini 3 documentation files
17+ │ │ ├── readme.python.md
18+ │ │ └── readme.typescript.md
19+ │ └── gpt5_2/
20+ │ ├── docs/ # GPT-5.2 documentation files
21+ │ ├── examples/ # GPT-5.2 example code
22+ │ ├── readme.python.md
23+ │ └── readme.typescript.md
24+ ├── src_py/
25+ │ ├── Makefile
26+ │ ├── agent_adapter/
27+ │ │ ├── __init__.py
28+ │ │ └── hello_world.py
29+ │ ├── pyproject.toml
30+ │ └── tests/
31+ │ └── test_hello_world.py
32+ └── src_ts/
33+ ├── Makefile
34+ ├── eslint.config.cjs
35+ ├── package-lock.json
36+ ├── package.json
37+ ├── src/
38+ │ └── index.ts
39+ └── tsconfig.json
40+ ```
41+
42+ ## Directory Structure Overview
43+
44+ - ** docs/** - Documentation for different AI model adapters
45+ - ** claude4_5/** - Claude 4.5 API documentation and examples
46+ - ** gemini3/** - Gemini 3 API documentation and examples
47+ - ** gpt5_2/** - GPT-5.2 API documentation and examples
48+
49+ - ** src_py/** - Python package source code
50+ - ** agent_adapter/** - Main Python package
51+ - ** tests/** - Python test files
52+
53+ - ** src_ts/** - TypeScript package source code
54+ - ** src/** - TypeScript source files
You can’t perform that action at this time.
0 commit comments