openai/openai-cookbook

Public

mirrored fromhttps://github.com/openai/openai-cookbookAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.gitignore

156lines · modecode

1# Byte-compiled / optimized / DLL files
2__pycache__/
3*.py[cod]
4*$py.class
5
6# C extensions
7*.so
8
9# Distribution / packaging
10.Python
11build/
12develop-eggs/
13dist/
14downloads/
15eggs/
16.eggs/
17lib/
18!examples/voice_solutions/realtime_translation_guide/livekit-translation-demo/lib/
19!examples/voice_solutions/realtime_translation_guide/livekit-translation-demo/lib/**
20lib64
21parts/
22sdist/
23var/
24wheels/
25pip-wheel-metadata/
26share/python-wheels/
27*.egg-info/
28.installed.cfg
29*.egg
30MANIFEST
31
32# PyInstaller
33# Usually these files are written by a python script from a template
34# before PyInstaller builds the exe, so as to inject date/other infos into it.
35*.manifest
36*.spec
37
38# Installer logs
39pip-log.txt
40pip-delete-this-directory.txt
41
42# Unit test / coverage reports
43htmlcov/
44.tox/
45.nox/
46.coverage
47.coverage.*
48.cache
49nosetests.xml
50coverage.xml
51*.cover
52*.py,cover
53.hypothesis/
54.pytest_cache/
55
56# Translations
57*.mo
58*.pot
59
60# Django stuff:
61*.log
62local_settings.py
63db.sqlite3
64db.sqlite3-journal
65
66# Flask stuff:
67instance/
68.webassets-cache
69
70# Scrapy stuff:
71.scrapy
72
73# Sphinx documentation
74docs/_build/
75
76# PyBuilder
77target/
78
79# Jupyter Notebook
80.ipynb_checkpoints
81
82# IPython
83profile_default/
84ipython_config.py
85
86# pyenv
87.python-version
88
89# pipenv
90# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91# However, in case of collaboration, if having platform-specific dependencies or dependencies
92# having no cross-platform support, pipenv may install dependencies that don't work, or not
93# install all needed dependencies.
94#Pipfile.lock
95
96# PEP 582; used by e.g. github.com/David-OConnor/pyflow
97__pypackages__/
98
99# Celery stuff
100celerybeat-schedule
101celerybeat.pid
102
103# SageMath parsed files
104*.sage.py
105
106# Environments
107.env
108.env.*
109!.env.example
110.venv
111env/
112venv/
113ENV/
114env.bak/
115venv.bak/
116pyvenv.cfg
117share/
118bin/
119
120# Spyder project settings
121.spyderproject
122.spyproject
123
124# Rope project settings
125.ropeproject
126
127# mkdocs documentation
128/site
129
130# mypy
131.mypy_cache/
132.dmypy.json
133dmypy.json
134
135# Pyre type checker
136.pyre/
137
138# Data
139*transactions*.jsonl
140/examples/data/transactions*
141*.DS_Store
142tmp_*
143examples/fine-tuned_qa/local_cache/*
144examples/multimodal/.local_cache/*
145examples/coding-agent-workspace
146
147# PyCharm files
148.idea/
149.cursorignore
150
151# VS Code files
152.vscode/
153.cursorignore
154
155# Generated by examples/agents_sdk/agent_improvement_loop.ipynb
156/examples/agents_sdk/agent_improvement_loop_artifacts/
157