-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy path.gitignore
70 lines (60 loc) · 1.58 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Generated dirs
.vscode
.idea
.coverage
node_modules
dist
sdist
*__pycache__*
**/.pytest_cache
**/.ipynb_checkpoints/
**/.DS_Store
# Server static files
/src/phoenix/server/static/*
# Data files
*.csv
!tests/**/fixtures/*.csv
*.hdf
*.hdf5
# Testing
coverage.xml
.tox
# devtools
pyrightconfig.json
!/packages/phoenix-client/src/phoenix/client/helpers/sdk/pyrightconfig.json
!/packages/phoenix-client/tests/canary/sdk/pyrightconfig.json
!/tests/integration/pyrightconfig.json
# Demo data
tutorials/internal/demo_llama_index/*.json
examples/agent_framework_comparison/utils/saved_traces/*.parquet
.env
# python environments
.conda
.venv
# Deno Notebook Environment
js/examples/notebooks/**/deno.lock
# These can be generated by code refactoring via IntelliJ,
# but they should be excluded from their Python packages, as
# they would clobber the same files in phoenix when they are
# installed as submodules.
/packages/__init__.py
/packages/phoenix-client/__init__.py
/packages/phoenix-client/src/__init__.py
/packages/phoenix-client/src/phoenix/__init__.py
/packages/phoenix-evals/__init__.py
/packages/phoenix-evals/src/__init__.py
/packages/phoenix-evals/src/phoenix/__init__.py
/packages/phoenix-otel/__init__.py
/packages/phoenix-otel/src/__init__.py
/packages/phoenix-otel/src/phoenix/__init__.py
# Symbolic links
# Note that this can affect hatch build for those packages. That's why
# we need to un-ignore it if it's an actual folder (i.e. with the trailing /).
/src/phoenix/client
!src/phoenix/client/
/src/phoenix/evals
!src/phoenix/evals/
/src/phoenix/otel
!src/phoenix/otel/
# Caches
.pnpm-store