T145 commited on
Commit
243c6d6
1 Parent(s): a17bfe8

Fixed chatting

Browse files
Files changed (5) hide show
  1. .gitattributes +2 -0
  2. .gitignore +4 -0
  3. app.py +15 -3
  4. pixi.lock +2348 -0
  5. pyproject.toml +24 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ # SCM syntax highlighting
37
+ pixi.lock linguist-language=YAML linguist-generated=true
.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+
2
+ # pixi environments
3
+ .pixi
4
+ *.egg-info
app.py CHANGED
@@ -4,7 +4,7 @@ from llama_cpp import Llama
4
  LLM = Llama.from_pretrained(
5
  repo_id="mradermacher/ZEUS-8B-V2-i1-GGUF",
6
  filename="*Q4_K_M.gguf",
7
- chat_format="llama-2",
8
  verbose=False
9
  )
10
 
@@ -36,7 +36,18 @@ def respond(
36
  temperature=temperature,
37
  top_p=top_p,
38
  ):
39
- token = message.choices[0].delta.content
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  response += token
42
  yield response
@@ -44,7 +55,8 @@ def respond(
44
 
45
  if __name__ == "__main__":
46
  demo = gr.ChatInterface(
47
- respond,
 
48
  additional_inputs=[
49
  gr.Textbox(value="You are a friendly assistant.", label="System message"),
50
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
 
4
  LLM = Llama.from_pretrained(
5
  repo_id="mradermacher/ZEUS-8B-V2-i1-GGUF",
6
  filename="*Q4_K_M.gguf",
7
+ chat_format="chatml",
8
  verbose=False
9
  )
10
 
 
36
  temperature=temperature,
37
  top_p=top_p,
38
  ):
39
+ if "choices" not in message:
40
+ continue
41
+
42
+ token = message["choices"][0]["delta"]
43
+
44
+ if "content" not in token:
45
+ continue
46
+
47
+ token = token["content"]
48
+
49
+ if token.strip() == "|":
50
+ break
51
 
52
  response += token
53
  yield response
 
55
 
56
  if __name__ == "__main__":
57
  demo = gr.ChatInterface(
58
+ fn=respond,
59
+ type="messages",
60
  additional_inputs=[
61
  gr.Textbox(value="You are a friendly assistant.", label="System message"),
62
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
pixi.lock ADDED
@@ -0,0 +1,2348 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: 6
2
+ environments:
3
+ default:
4
+ channels:
5
+ - url: https://conda.anaconda.org/conda-forge/
6
+ - url: https://conda.anaconda.org/huggingface/
7
+ indexes:
8
+ - https://pypi.org/simple
9
+ packages:
10
+ win-64:
11
+ - conda: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
12
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiofiles-23.2.1-pyhd8ed1ab_0.conda
13
+ - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
14
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda
15
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda
16
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda
17
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda
18
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda
19
+ - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
20
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.12.14-h56e8100_0.conda
21
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.2-h5782bbf_1.conda
22
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
23
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda
24
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
25
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda
26
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
27
+ - conda: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.1-py310hc19bc0b_0.conda
28
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
29
+ - conda: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda
30
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_1.conda
31
+ - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_1.conda
32
+ - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_1.conda
33
+ - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda
34
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-0.115.6-pyhd8ed1ab_0.conda
35
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.7-pyhd8ed1ab_0.conda
36
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-7.1.0-gpl_ha7a551e_708.conda
37
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ffmpy-0.3.0-pyhb6f538c_0.tar.bz2
38
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
39
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
40
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
41
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
42
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
43
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda
44
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
45
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
46
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.3-py310h38315fa_0.conda
47
+ - conda: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda
48
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2
49
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
50
+ - conda: https://conda.anaconda.org/conda-forge/win-64/gdk-pixbuf-2.42.12-hed59a49_0.conda
51
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gradio-5.0.1-pyhd8ed1ab_0.conda
52
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gradio-client-1.4.0-pyhd8ed1ab_0.conda
53
+ - conda: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda
54
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda
55
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_1.conda
56
+ - conda: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-10.1.0-ha6ce084_0.conda
57
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyhd8ed1ab_1.conda
58
+ - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
59
+ - conda: https://conda.anaconda.org/conda-forge/win-64/httptools-0.6.4-py310ha8f682b_0.conda
60
+ - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
61
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.25.2-pyh0610db2_0.conda
62
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
63
+ - conda: https://conda.anaconda.org/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
64
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
65
+ - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda
66
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
67
+ - conda: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda
68
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda
69
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2
70
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-26_win64_mkl.conda
71
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda
72
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda
73
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda
74
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-26_win64_mkl.conda
75
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda
76
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda
77
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
78
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_1.conda
79
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.82.2-h7025463_0.conda
80
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_1.conda
81
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda
82
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda
83
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda
84
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda
85
+ - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-26_win64_mkl.conda
86
+ - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.3-h2466b09_1.conda
87
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2
88
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.44-h3ca93ac_0.conda
89
+ - conda: https://conda.anaconda.org/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_2.conda
90
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.47.2-h67fdade_0.conda
91
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda
92
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda
93
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_8.conda
94
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
95
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.5-he286e8c_1.conda
96
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
97
+ - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda
98
+ - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py310ha8f682b_1.conda
99
+ - conda: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.10.0-py310h37e0a56_0.conda
100
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
101
+ - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda
102
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
103
+ - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-2.2.1-py310hb9d903e_0.conda
104
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openh264-2.5.0-ha9db3cd_0.conda
105
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda
106
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-h2466b09_0.conda
107
+ - conda: https://conda.anaconda.org/conda-forge/win-64/orjson-3.10.12-py310hc226416_0.conda
108
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
109
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py310hb4db72f_1.conda
110
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pango-1.54.0-h286b592_4.conda
111
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda
112
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pillow-10.4.0-py310h3e38d90_1.conda
113
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.44.2-had0cd8c_0.conda
114
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda
115
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
116
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
117
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.27.2-py310hc226416_0.conda
118
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydub-0.25.1-pyhd8ed1ab_1.conda
119
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda
120
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.0-pyhd8ed1ab_2.conda
121
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda
122
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.10.16-h37870fc_1_cpython.conda
123
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda
124
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_1.conda
125
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.20-pyhff2d567_0.conda
126
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.2-pyhd8ed1ab_1.conda
127
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-5_cp310.conda
128
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
129
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py310ha8f682b_1.conda
130
+ - conda: https://conda.anaconda.org/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda
131
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
132
+ - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
133
+ - conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
134
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.8.4-py310he03e3bc_0.conda
135
+ - conda: https://conda.anaconda.org/conda-forge/noarch/semantic_version-2.10.0-pyhd8ed1ab_0.tar.bz2
136
+ - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
137
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
138
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
139
+ - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
140
+ - conda: https://conda.anaconda.org/conda-forge/win-64/svt-av1-2.3.0-he0c23c2_0.conda
141
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda
142
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
143
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.0-pyha770c72_0.conda
144
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
145
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda
146
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda
147
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda
148
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
149
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
150
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
151
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
152
+ - conda: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-15.1.0-py310ha8f682b_1.conda
153
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
154
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh5737063_0.conda
155
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h5737063_0.conda
156
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_23.conda
157
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-he29a5d6_23.conda
158
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hdffcdeb_23.conda
159
+ - conda: https://conda.anaconda.org/conda-forge/win-64/watchfiles-1.0.3-py310hc226416_0.conda
160
+ - conda: https://conda.anaconda.org/conda-forge/win-64/websockets-12.0-py310h8d17308_0.conda
161
+ - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda
162
+ - conda: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2
163
+ - conda: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2
164
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda
165
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda
166
+ - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2
167
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310he5e10e1_1.conda
168
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda
169
+ - pypi: https://files.pythonhosted.org/packages/3f/27/4570e78fc0bf5ea0ca45eb1de3818a23787af9b390c0b0a0033a1b8236f9/diskcache-5.6.3-py3-none-any.whl
170
+ - pypi: https://files.pythonhosted.org/packages/91/00/9b4c5557b694fb8d3730d006afbb2facc36f27e2c0f136d9cc009f4b1ffa/llama_cpp_python-0.3.5.tar.gz
171
+ - pypi: .
172
+ packages:
173
+ - conda: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
174
+ build_number: 8
175
+ sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d
176
+ md5: 37e16618af5c4851a3f3d66dd0e11141
177
+ depends:
178
+ - libgomp >=7.5.0
179
+ - libwinpthread >=12.0.0.r2.ggc561118da
180
+ constrains:
181
+ - openmp_impl 9999
182
+ - msys2-conda-epoch <0.0a0
183
+ license: BSD-3-Clause
184
+ license_family: BSD
185
+ purls: []
186
+ size: 49468
187
+ timestamp: 1718213032772
188
+ - conda: https://conda.anaconda.org/conda-forge/noarch/aiofiles-23.2.1-pyhd8ed1ab_0.conda
189
+ sha256: 98c9b4480dba1ae72c9a187cee7164ed1704f03c82576940311b5c3b55118ee5
190
+ md5: a2ee5b45771a700cf442a2edb151594e
191
+ depends:
192
+ - python >=3.7
193
+ license: Apache-2.0
194
+ license_family: Apache
195
+ purls:
196
+ - pkg:pypi/aiofiles?source=hash-mapping
197
+ size: 19507
198
+ timestamp: 1698946114329
199
+ - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
200
+ sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48
201
+ md5: 2934f256a8acfe48f6ebb4fce6cde29c
202
+ depends:
203
+ - python >=3.9
204
+ - typing-extensions >=4.0.0
205
+ license: MIT
206
+ license_family: MIT
207
+ purls:
208
+ - pkg:pypi/annotated-types?source=hash-mapping
209
+ size: 18074
210
+ timestamp: 1733247158254
211
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda
212
+ sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1
213
+ md5: c88107912954a983c2caf25f7fd55158
214
+ depends:
215
+ - exceptiongroup >=1.0.2
216
+ - idna >=2.8
217
+ - python >=3.9
218
+ - sniffio >=1.1
219
+ - typing_extensions >=4.5
220
+ constrains:
221
+ - trio >=0.26.1
222
+ - uvloop >=0.21
223
+ license: MIT
224
+ license_family: MIT
225
+ purls:
226
+ - pkg:pypi/anyio?source=compressed-mapping
227
+ size: 112730
228
+ timestamp: 1733532678437
229
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda
230
+ sha256: 0524d0c0b61dacd0c22ac7a8067f977b1d52380210933b04141f5099c5b6fec7
231
+ md5: 3d7c14285d3eb3239a76ff79063f27a5
232
+ depends:
233
+ - ucrt >=10.0.20348.0
234
+ - vc >=14.2,<15
235
+ - vc14_runtime >=14.29.30139
236
+ license: BSD-2-Clause
237
+ license_family: BSD
238
+ purls: []
239
+ size: 1958151
240
+ timestamp: 1718551737234
241
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda
242
+ sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252
243
+ md5: 378f1c9421775dfe644731cb121c8979
244
+ depends:
245
+ - brotli-bin 1.1.0 h2466b09_2
246
+ - libbrotlidec 1.1.0 h2466b09_2
247
+ - libbrotlienc 1.1.0 h2466b09_2
248
+ - ucrt >=10.0.20348.0
249
+ - vc >=14.2,<15
250
+ - vc14_runtime >=14.29.30139
251
+ license: MIT
252
+ license_family: MIT
253
+ purls: []
254
+ size: 19697
255
+ timestamp: 1725268293988
256
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda
257
+ sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2
258
+ md5: d22534a9be5771fc58eb7564947f669d
259
+ depends:
260
+ - libbrotlidec 1.1.0 h2466b09_2
261
+ - libbrotlienc 1.1.0 h2466b09_2
262
+ - ucrt >=10.0.20348.0
263
+ - vc >=14.2,<15
264
+ - vc14_runtime >=14.29.30139
265
+ license: MIT
266
+ license_family: MIT
267
+ purls: []
268
+ size: 20837
269
+ timestamp: 1725268270219
270
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda
271
+ sha256: 1b7893a07f2323410b09b63b4627103efa86163be835ac94966333b37741cdc7
272
+ md5: 3a10a1d0cf3ece273195f26191fd6cc6
273
+ depends:
274
+ - python >=3.10,<3.11.0a0
275
+ - python_abi 3.10.* *_cp310
276
+ - ucrt >=10.0.20348.0
277
+ - vc >=14.2,<15
278
+ - vc14_runtime >=14.29.30139
279
+ constrains:
280
+ - libbrotlicommon 1.1.0 h2466b09_2
281
+ license: MIT
282
+ license_family: MIT
283
+ purls:
284
+ - pkg:pypi/brotli?source=hash-mapping
285
+ size: 321576
286
+ timestamp: 1725268612274
287
+ - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
288
+ sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b
289
+ md5: 276e7ffe9ffe39688abc665ef0f45596
290
+ depends:
291
+ - ucrt >=10.0.20348.0
292
+ - vc >=14.2,<15
293
+ - vc14_runtime >=14.29.30139
294
+ license: bzip2-1.0.6
295
+ license_family: BSD
296
+ purls: []
297
+ size: 54927
298
+ timestamp: 1720974860185
299
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.12.14-h56e8100_0.conda
300
+ sha256: 424d82db36cd26234bc4772426170efd60e888c2aed0099a257a95e131683a5e
301
+ md5: cb2eaeb88549ddb27af533eccf9a45c1
302
+ license: ISC
303
+ purls: []
304
+ size: 157422
305
+ timestamp: 1734208404685
306
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cairo-1.18.2-h5782bbf_1.conda
307
+ sha256: 86fb783e19f7c46ad781d853b650f4cef1c3f2b1b07dd112afe1fc278bc73020
308
+ md5: 63ff2bf400dde4fad0bed56debee5c16
309
+ depends:
310
+ - fontconfig >=2.15.0,<3.0a0
311
+ - fonts-conda-ecosystem
312
+ - freetype >=2.12.1,<3.0a0
313
+ - icu >=75.1,<76.0a0
314
+ - libexpat >=2.6.4,<3.0a0
315
+ - libglib >=2.82.2,<3.0a0
316
+ - libpng >=1.6.44,<1.7.0a0
317
+ - libzlib >=1.3.1,<2.0a0
318
+ - pixman >=0.44.2,<1.0a0
319
+ - ucrt >=10.0.20348.0
320
+ - vc >=14.2,<15
321
+ - vc14_runtime >=14.29.30139
322
+ license: LGPL-2.1-only or MPL-1.1
323
+ purls: []
324
+ size: 1515969
325
+ timestamp: 1733791355894
326
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
327
+ sha256: 048c16a9cbcb1fbad02083414d3bc7c1d0eea4b39aee6aa6bf8d1d5089ca8bad
328
+ md5: 6feb87357ecd66733be3279f16a8c400
329
+ depends:
330
+ - python >=3.9
331
+ license: ISC
332
+ purls:
333
+ - pkg:pypi/certifi?source=hash-mapping
334
+ size: 161642
335
+ timestamp: 1734380604767
336
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda
337
+ sha256: 32638e79658f76e3700f783c519025290110f207833ae1d166d262572cbec8a8
338
+ md5: 9c7ec967f4ae263aec56cff05bdbfc07
339
+ depends:
340
+ - pycparser
341
+ - python >=3.10,<3.11.0a0
342
+ - python_abi 3.10.* *_cp310
343
+ - ucrt >=10.0.20348.0
344
+ - vc >=14.2,<15
345
+ - vc14_runtime >=14.29.30139
346
+ license: MIT
347
+ license_family: MIT
348
+ purls:
349
+ - pkg:pypi/cffi?source=hash-mapping
350
+ size: 238887
351
+ timestamp: 1725561032032
352
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
353
+ sha256: 63022ee2c6a157a9f980250a66f54bdcdf5abee817348d0f9a74c2441a6fbf0e
354
+ md5: 6581a17bba6b948bb60130026404a9d6
355
+ depends:
356
+ - python >=3.9
357
+ license: MIT
358
+ license_family: MIT
359
+ purls:
360
+ - pkg:pypi/charset-normalizer?source=hash-mapping
361
+ size: 47533
362
+ timestamp: 1733218182393
363
+ - pypi: .
364
+ name: chatdemo
365
+ version: 1.0.0
366
+ sha256: 72c2f711e707531568782385f530f11ea1c33106fa7cd9d510dd2e40bcf9b920
367
+ requires_dist:
368
+ - llama-cpp-python
369
+ requires_python: <3.11
370
+ editable: true
371
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh7428d3b_0.conda
372
+ sha256: c889ed359ae47eead4ffe8927b7206b22c55e67d6e74a9044c23736919d61e8d
373
+ md5: 90e5571556f7a45db92ee51cb8f97af6
374
+ depends:
375
+ - __win
376
+ - colorama
377
+ - python >=3.9
378
+ license: BSD-3-Clause
379
+ license_family: BSD
380
+ purls:
381
+ - pkg:pypi/click?source=hash-mapping
382
+ size: 85169
383
+ timestamp: 1734858972635
384
+ - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
385
+ sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
386
+ md5: 962b9857ee8e7018c22f2776ffa0b2d7
387
+ depends:
388
+ - python >=3.9
389
+ license: BSD-3-Clause
390
+ license_family: BSD
391
+ purls:
392
+ - pkg:pypi/colorama?source=hash-mapping
393
+ size: 27011
394
+ timestamp: 1733218222191
395
+ - conda: https://conda.anaconda.org/conda-forge/win-64/contourpy-1.3.1-py310hc19bc0b_0.conda
396
+ sha256: b9e50ead1c1a7a7c0bff5b1e72436016037b0187cecba7f626c9feffe5b3deaf
397
+ md5: 741bcc6a07e77d3102aa23c580cad4f0
398
+ depends:
399
+ - numpy >=1.23
400
+ - python >=3.10,<3.11.0a0
401
+ - python_abi 3.10.* *_cp310
402
+ - ucrt >=10.0.20348.0
403
+ - vc >=14.2,<15
404
+ - vc14_runtime >=14.29.30139
405
+ license: BSD-3-Clause
406
+ license_family: BSD
407
+ purls:
408
+ - pkg:pypi/contourpy?source=hash-mapping
409
+ size: 199849
410
+ timestamp: 1731429286097
411
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
412
+ sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c
413
+ md5: 44600c4667a319d67dbe0681fc0bc833
414
+ depends:
415
+ - python >=3.9
416
+ license: BSD-3-Clause
417
+ license_family: BSD
418
+ purls:
419
+ - pkg:pypi/cycler?source=hash-mapping
420
+ size: 13399
421
+ timestamp: 1733332563512
422
+ - conda: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda
423
+ sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4
424
+ md5: ed2c27bda330e3f0ab41577cf8b9b585
425
+ depends:
426
+ - ucrt >=10.0.20348.0
427
+ - vc >=14.2,<15
428
+ - vc14_runtime >=14.29.30139
429
+ license: BSD-2-Clause
430
+ license_family: BSD
431
+ purls: []
432
+ size: 618643
433
+ timestamp: 1685696352968
434
+ - pypi: https://files.pythonhosted.org/packages/3f/27/4570e78fc0bf5ea0ca45eb1de3818a23787af9b390c0b0a0033a1b8236f9/diskcache-5.6.3-py3-none-any.whl
435
+ name: diskcache
436
+ version: 5.6.3
437
+ sha256: 5e31b2d5fbad117cc363ebaf6b689474db18a1f6438bc82358b024abd4c2ca19
438
+ requires_python: '>=3'
439
+ - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_1.conda
440
+ sha256: 3ec40ccf63f2450c5e6c7dd579e42fc2e97caf0d8cd4ba24aa434e6fc264eda0
441
+ md5: 5fbd60d61d21b4bd2f9d7a48fe100418
442
+ depends:
443
+ - python >=3.9,<4.0.0
444
+ - sniffio
445
+ constrains:
446
+ - aioquic >=1.0.0
447
+ - wmi >=1.5.1
448
+ - httpx >=0.26.0
449
+ - trio >=0.23
450
+ - cryptography >=43
451
+ - httpcore >=1.0.0
452
+ - idna >=3.7
453
+ - h2 >=4.1.0
454
+ license: ISC
455
+ license_family: OTHER
456
+ purls:
457
+ - pkg:pypi/dnspython?source=compressed-mapping
458
+ size: 172172
459
+ timestamp: 1733256829961
460
+ - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_1.conda
461
+ sha256: b91a19eb78edfc2dbb36de9a67f74ee2416f1b5273dd7327abe53f2dbf864736
462
+ md5: da16dd3b0b71339060cd44cb7110ddf9
463
+ depends:
464
+ - dnspython >=2.0.0
465
+ - idna >=2.0.0
466
+ - python >=3.9
467
+ license: Unlicense
468
+ purls:
469
+ - pkg:pypi/email-validator?source=hash-mapping
470
+ size: 44401
471
+ timestamp: 1733300827551
472
+ - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_1.conda
473
+ sha256: e0d0fdf587aa0ed0ff08b2bce3ab355f46687b87b0775bfba01cc80a859ee6a2
474
+ md5: 0794f8807ff2c6f020422cacb1bd7bfa
475
+ depends:
476
+ - email-validator >=2.2.0,<2.2.1.0a0
477
+ license: Unlicense
478
+ purls: []
479
+ size: 6552
480
+ timestamp: 1733300828176
481
+ - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda
482
+ sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701
483
+ md5: a16662747cdeb9abbac74d0057cc976e
484
+ depends:
485
+ - python >=3.9
486
+ license: MIT and PSF-2.0
487
+ purls:
488
+ - pkg:pypi/exceptiongroup?source=compressed-mapping
489
+ size: 20486
490
+ timestamp: 1733208916977
491
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-0.115.6-pyhd8ed1ab_0.conda
492
+ sha256: d7826d537c667093c9de96411a09585a8d620c84a830a0195e58e9a0df45f018
493
+ md5: 1b1e0c97830cdf75f1f371bd467ab657
494
+ depends:
495
+ - email_validator >=2.0.0
496
+ - fastapi-cli >=0.0.5
497
+ - httpx >=0.23.0
498
+ - jinja2 >=2.11.2
499
+ - pydantic >=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0
500
+ - python >=3.9
501
+ - python-multipart >=0.0.7
502
+ - starlette >=0.40.0,<0.42.0
503
+ - typing_extensions >=4.8.0
504
+ - uvicorn-standard >=0.12.0
505
+ license: MIT
506
+ license_family: MIT
507
+ purls:
508
+ - pkg:pypi/fastapi?source=hash-mapping
509
+ size: 73084
510
+ timestamp: 1733362427885
511
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.7-pyhd8ed1ab_0.conda
512
+ sha256: 300683731013b7221922339cd40430bb3c2ddeeb658fd7e37f5099ffe64e4db0
513
+ md5: d960e0ea9e1c561aa928f6c4439f04c7
514
+ depends:
515
+ - python >=3.9
516
+ - rich-toolkit >=0.11.1
517
+ - typer >=0.12.3
518
+ - uvicorn-standard >=0.15.0
519
+ license: MIT
520
+ license_family: MIT
521
+ purls:
522
+ - pkg:pypi/fastapi-cli?source=hash-mapping
523
+ size: 15546
524
+ timestamp: 1734302408607
525
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-7.1.0-gpl_ha7a551e_708.conda
526
+ sha256: cdfbf50b23e6f38a3a3f7f675827a3f7603b179c24fb8241ae8d2bebcd04f6f1
527
+ md5: 30736e121af3d96b7876d9ef60a30848
528
+ depends:
529
+ - aom >=3.9.1,<3.10.0a0
530
+ - bzip2 >=1.0.8,<2.0a0
531
+ - dav1d >=1.2.1,<1.2.2.0a0
532
+ - fontconfig >=2.15.0,<3.0a0
533
+ - fonts-conda-ecosystem
534
+ - freetype >=2.12.1,<3.0a0
535
+ - harfbuzz >=10.1.0,<11.0a0
536
+ - libexpat >=2.6.4,<3.0a0
537
+ - libiconv >=1.17,<2.0a0
538
+ - liblzma >=5.6.3,<6.0a0
539
+ - libopus >=1.3.1,<2.0a0
540
+ - librsvg >=2.58.4,<3.0a0
541
+ - libxml2 >=2.13.5,<3.0a0
542
+ - libzlib >=1.3.1,<2.0a0
543
+ - openh264 >=2.5.0,<2.5.1.0a0
544
+ - openssl >=3.4.0,<4.0a0
545
+ - svt-av1 >=2.3.0,<2.3.1.0a0
546
+ - ucrt >=10.0.20348.0
547
+ - vc >=14.2,<15
548
+ - vc14_runtime >=14.29.30139
549
+ - x264 >=1!164.3095,<1!165
550
+ - x265 >=3.5,<3.6.0a0
551
+ constrains:
552
+ - __cuda >=12.4
553
+ license: GPL-2.0-or-later
554
+ license_family: GPL
555
+ purls: []
556
+ size: 9982376
557
+ timestamp: 1734899699388
558
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ffmpy-0.3.0-pyhb6f538c_0.tar.bz2
559
+ sha256: 19e8500b169244e2ab0df3d086c3040c0cd96631781bb16c9045a0b2e6ea6e61
560
+ md5: 6ac23fb78d7234152221fea00aeb11c8
561
+ depends:
562
+ - ffmpeg
563
+ - python >=3.6
564
+ license: MIT
565
+ license_family: MIT
566
+ purls:
567
+ - pkg:pypi/ffmpy?source=hash-mapping
568
+ size: 10415
569
+ timestamp: 1659475099796
570
+ - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
571
+ sha256: 18dca6e2194732df7ebf824abaefe999e4765ebe8e8a061269406ab88fc418b9
572
+ md5: d692e9ba6f92dc51484bf3477e36ce7c
573
+ depends:
574
+ - python >=3.9
575
+ license: Unlicense
576
+ purls:
577
+ - pkg:pypi/filelock?source=hash-mapping
578
+ size: 17441
579
+ timestamp: 1733240909987
580
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
581
+ sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b
582
+ md5: 0c96522c6bdaed4b1566d11387caaf45
583
+ license: BSD-3-Clause
584
+ license_family: BSD
585
+ purls: []
586
+ size: 397370
587
+ timestamp: 1566932522327
588
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
589
+ sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c
590
+ md5: 34893075a5c9e55cdafac56607368fc6
591
+ license: OFL-1.1
592
+ license_family: Other
593
+ purls: []
594
+ size: 96530
595
+ timestamp: 1620479909603
596
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
597
+ sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139
598
+ md5: 4d59c254e01d9cde7957100457e2d5fb
599
+ license: OFL-1.1
600
+ license_family: Other
601
+ purls: []
602
+ size: 700814
603
+ timestamp: 1620479612257
604
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
605
+ sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14
606
+ md5: 49023d73832ef61042f6a237cb2687e7
607
+ license: LicenseRef-Ubuntu-Font-Licence-Version-1.0
608
+ license_family: Other
609
+ purls: []
610
+ size: 1620504
611
+ timestamp: 1727511233259
612
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda
613
+ sha256: ed122fc858fb95768ca9ca77e73c8d9ddc21d4b2e13aaab5281e27593e840691
614
+ md5: 9bb0026a2131b09404c59c4290c697cd
615
+ depends:
616
+ - freetype >=2.12.1,<3.0a0
617
+ - libexpat >=2.6.3,<3.0a0
618
+ - libiconv >=1.17,<2.0a0
619
+ - libzlib >=1.3.1,<2.0a0
620
+ - ucrt >=10.0.20348.0
621
+ - vc >=14.2,<15
622
+ - vc14_runtime >=14.29.30139
623
+ license: MIT
624
+ license_family: MIT
625
+ purls: []
626
+ size: 192355
627
+ timestamp: 1730284147944
628
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
629
+ sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61
630
+ md5: fee5683a3f04bd15cbd8318b096a27ab
631
+ depends:
632
+ - fonts-conda-forge
633
+ license: BSD-3-Clause
634
+ license_family: BSD
635
+ purls: []
636
+ size: 3667
637
+ timestamp: 1566974674465
638
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
639
+ sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38
640
+ md5: f766549260d6815b0c52253f1fb1bb29
641
+ depends:
642
+ - font-ttf-dejavu-sans-mono
643
+ - font-ttf-inconsolata
644
+ - font-ttf-source-code-pro
645
+ - font-ttf-ubuntu
646
+ license: BSD-3-Clause
647
+ license_family: BSD
648
+ purls: []
649
+ size: 4102
650
+ timestamp: 1566932280397
651
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.3-py310h38315fa_0.conda
652
+ sha256: b5fd15b93b1f4359873e733a07672bc1f2e8729182fedd1ca3f3b50ec0cdc696
653
+ md5: 1a7c85a5dc2cca557de839ceb144ea16
654
+ depends:
655
+ - brotli
656
+ - munkres
657
+ - python >=3.10,<3.11.0a0
658
+ - python_abi 3.10.* *_cp310
659
+ - ucrt >=10.0.20348.0
660
+ - unicodedata2 >=15.1.0
661
+ - vc >=14.2,<15
662
+ - vc14_runtime >=14.29.30139
663
+ license: MIT
664
+ license_family: MIT
665
+ purls:
666
+ - pkg:pypi/fonttools?source=hash-mapping
667
+ size: 1960007
668
+ timestamp: 1733909554738
669
+ - conda: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda
670
+ sha256: 2c53ee8879e05e149a9e525481d36adfd660a6abda26fd731376fa64ff03e728
671
+ md5: 3761b23693f768dc75a8fd0a73ca053f
672
+ depends:
673
+ - libpng >=1.6.39,<1.7.0a0
674
+ - libzlib >=1.2.13,<2.0.0a0
675
+ - ucrt >=10.0.20348.0
676
+ - vc >=14.2,<15
677
+ - vc14_runtime >=14.29.30139
678
+ license: GPL-2.0-only OR FTL
679
+ purls: []
680
+ size: 510306
681
+ timestamp: 1694616398888
682
+ - conda: https://conda.anaconda.org/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2
683
+ sha256: e0323e6d7b6047042970812ee810c6b1e1a11a3af4025db26d0965ae5d206104
684
+ md5: 807e81d915f2bb2e49951648615241f6
685
+ depends:
686
+ - vc >=14.1,<15.0a0
687
+ - vs2015_runtime >=14.16.27012
688
+ license: LGPL-2.1
689
+ purls: []
690
+ size: 64567
691
+ timestamp: 1604417122064
692
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
693
+ sha256: 3320970c4604989eadf908397a9475f9e6a96a773c185915111399cbfbe47817
694
+ md5: e041ad4c43ab5e10c74587f95378ebc7
695
+ depends:
696
+ - python >=3.9
697
+ license: BSD-3-Clause
698
+ license_family: BSD
699
+ purls:
700
+ - pkg:pypi/fsspec?source=compressed-mapping
701
+ size: 137756
702
+ timestamp: 1734650349242
703
+ - conda: https://conda.anaconda.org/conda-forge/win-64/gdk-pixbuf-2.42.12-hed59a49_0.conda
704
+ sha256: 7a7768a5e65092242071f99b4cafe3e59546f9260ae472d3aa10a9a9aa869c3c
705
+ md5: 350196a65e715882abefffd1a702172d
706
+ depends:
707
+ - libglib >=2.80.2,<3.0a0
708
+ - libintl >=0.22.5,<1.0a0
709
+ - libjpeg-turbo >=3.0.0,<4.0a0
710
+ - libpng >=1.6.43,<1.7.0a0
711
+ - libtiff >=4.6.0,<4.8.0a0
712
+ - ucrt >=10.0.20348.0
713
+ - vc >=14.2,<15
714
+ - vc14_runtime >=14.29.30139
715
+ license: LGPL-2.1-or-later
716
+ license_family: LGPL
717
+ purls: []
718
+ size: 523967
719
+ timestamp: 1715783547727
720
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gradio-5.0.1-pyhd8ed1ab_0.conda
721
+ sha256: 4ecfe44596ab02b56cd378167993f23c461d825c296cb7c8709d2f91e4aa4c9b
722
+ md5: 9c2c27d62f65c64e8e0aa11590714009
723
+ depends:
724
+ - aiofiles >=22.0,<24.0
725
+ - anyio >=3.0,<5.0
726
+ - fastapi
727
+ - ffmpy
728
+ - gradio-client 1.4.0
729
+ - httpx >=0.24.1
730
+ - huggingface_hub >=0.25.1
731
+ - jinja2 <4.0
732
+ - markupsafe ~=2.0
733
+ - matplotlib-base >=3.0,<4.dev0
734
+ - numpy >=1.0,<3.0
735
+ - orjson ~=3.0
736
+ - packaging
737
+ - pandas >=1.0,<3.0
738
+ - pillow >=8.0,<11.0
739
+ - pydantic >=2.0
740
+ - pydub
741
+ - python >=3.8
742
+ - python-multipart >=0.0.9
743
+ - pyyaml >=5.0,<7.0
744
+ - ruff >=0.2.2
745
+ - semantic_version ~=2.0
746
+ - tomlkit 0.12.0
747
+ - typer >=0.12,<1.0
748
+ - typing-extensions ~=4.0
749
+ - urllib3 ~=2.0
750
+ - uvicorn >=0.14.0
751
+ license: Apache-2.0
752
+ license_family: APACHE
753
+ purls:
754
+ - pkg:pypi/gradio?source=hash-mapping
755
+ size: 33956701
756
+ timestamp: 1728534752920
757
+ - conda: https://conda.anaconda.org/conda-forge/noarch/gradio-client-1.4.0-pyhd8ed1ab_0.conda
758
+ sha256: ae59eff6df272b629b97e34b78f59ab00d12d5aafeed6370ec3faf02bac82042
759
+ md5: 7ec169c579f899c7dbb0242acc6b7d81
760
+ depends:
761
+ - fsspec
762
+ - httpx >=0.24.1
763
+ - huggingface_hub >=0.19.3
764
+ - packaging
765
+ - python >=3.8
766
+ - typing_extensions ~=4.0
767
+ - websockets >=10.0,<13.0
768
+ license: Apache-2.0
769
+ license_family: APACHE
770
+ purls:
771
+ - pkg:pypi/gradio-client?source=hash-mapping
772
+ size: 306663
773
+ timestamp: 1728495793706
774
+ - conda: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda
775
+ sha256: 25040a4f371b9b51663f546bac620122c237fa1d5d32968e21b0751af9b7f56f
776
+ md5: 3194499ee7d1a67404a87d0eefdd92c6
777
+ depends:
778
+ - ucrt >=10.0.20348.0
779
+ - vc >=14.2,<15
780
+ - vc14_runtime >=14.29.30139
781
+ license: LGPL-2.0-or-later
782
+ license_family: LGPL
783
+ purls: []
784
+ size: 95406
785
+ timestamp: 1711634622644
786
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_1.conda
787
+ sha256: 622516185a7c740d5c7f27016d0c15b45782c1501e5611deec63fd70344ce7c8
788
+ md5: 7ee49e89531c0dcbba9466f6d115d585
789
+ depends:
790
+ - python >=3.9
791
+ - typing_extensions
792
+ license: MIT
793
+ license_family: MIT
794
+ purls:
795
+ - pkg:pypi/h11?source=hash-mapping
796
+ size: 51846
797
+ timestamp: 1733327599467
798
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_1.conda
799
+ sha256: 843ddad410c370672a8250470697027618f104153612439076d4d7b91eeb7b5c
800
+ md5: 825927dc7b0f287ef8d4d0011bb113b1
801
+ depends:
802
+ - hpack >=4.0,<5
803
+ - hyperframe >=6.0,<7
804
+ - python >=3.9
805
+ license: MIT
806
+ license_family: MIT
807
+ purls:
808
+ - pkg:pypi/h2?source=hash-mapping
809
+ size: 52000
810
+ timestamp: 1733298867359
811
+ - conda: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-10.1.0-ha6ce084_0.conda
812
+ sha256: 47c58914d172a6f75e882be8a192f4b5eb7017d2bab8efb572c825c66beac384
813
+ md5: ad1da267c13505dbcc7fb9f0d21f24ae
814
+ depends:
815
+ - cairo >=1.18.2,<2.0a0
816
+ - freetype >=2.12.1,<3.0a0
817
+ - graphite2
818
+ - icu >=75.1,<76.0a0
819
+ - libexpat >=2.6.4,<3.0a0
820
+ - libglib >=2.82.2,<3.0a0
821
+ - ucrt >=10.0.20348.0
822
+ - vc >=14.2,<15
823
+ - vc14_runtime >=14.29.30139
824
+ license: MIT
825
+ license_family: MIT
826
+ purls: []
827
+ size: 1100980
828
+ timestamp: 1733707770488
829
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyhd8ed1ab_1.conda
830
+ sha256: ec89b7e5b8aa2f0219f666084446e1fb7b54545861e9caa892acb24d125761b5
831
+ md5: 2aa5ff7fa34a81b9196532c84c10d865
832
+ depends:
833
+ - python >=3.9
834
+ license: MIT
835
+ license_family: MIT
836
+ purls:
837
+ - pkg:pypi/hpack?source=hash-mapping
838
+ size: 29412
839
+ timestamp: 1733299296857
840
+ - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
841
+ sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df
842
+ md5: 2ca8e6dbc86525c8b95e3c0ffa26442e
843
+ depends:
844
+ - python >=3.8
845
+ - h11 >=0.13,<0.15
846
+ - h2 >=3,<5
847
+ - sniffio 1.*
848
+ - anyio >=3.0,<5.0
849
+ - certifi
850
+ license: BSD-3-Clause
851
+ license_family: BSD
852
+ purls: []
853
+ size: 48959
854
+ timestamp: 1731707562362
855
+ - conda: https://conda.anaconda.org/conda-forge/win-64/httptools-0.6.4-py310ha8f682b_0.conda
856
+ sha256: d5820922ed450ae68e4e99ce94264711f4374f9202da639515f8edd3ff4c9aac
857
+ md5: d977e279142bc06502298339d5229068
858
+ depends:
859
+ - python >=3.10,<3.11.0a0
860
+ - python_abi 3.10.* *_cp310
861
+ - ucrt >=10.0.20348.0
862
+ - vc >=14.2,<15
863
+ - vc14_runtime >=14.29.30139
864
+ license: MIT
865
+ license_family: MIT
866
+ purls:
867
+ - pkg:pypi/httptools?source=hash-mapping
868
+ size: 74096
869
+ timestamp: 1732708154887
870
+ - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
871
+ sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950
872
+ md5: d6989ead454181f4f9bc987d3dc4e285
873
+ depends:
874
+ - anyio
875
+ - certifi
876
+ - httpcore 1.*
877
+ - idna
878
+ - python >=3.9
879
+ license: BSD-3-Clause
880
+ license_family: BSD
881
+ purls:
882
+ - pkg:pypi/httpx?source=hash-mapping
883
+ size: 63082
884
+ timestamp: 1733663449209
885
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.25.2-pyh0610db2_0.conda
886
+ sha256: abbf94a1044f20e93f69d2532b22069aa93ce04b334f2971ba9c7385d7ef6271
887
+ md5: 84958b2d58dbe7402a3879325792a145
888
+ depends:
889
+ - filelock
890
+ - fsspec >=2023.5.0
891
+ - packaging >=20.9
892
+ - python >=3.8
893
+ - pyyaml >=5.1
894
+ - requests
895
+ - tqdm >=4.42.1
896
+ - typing-extensions >=3.7.4.3
897
+ - typing_extensions >=3.7.4.3
898
+ license: Apache-2.0
899
+ license_family: APACHE
900
+ purls:
901
+ - pkg:pypi/huggingface-hub?source=hash-mapping
902
+ size: 271076
903
+ timestamp: 1728485491758
904
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
905
+ sha256: e91c6ef09d076e1d9a02819cd00fa7ee18ecf30cdd667605c853980216584d1b
906
+ md5: 566e75c90c1d0c8c459eb0ad9833dc7a
907
+ depends:
908
+ - python >=3.9
909
+ license: MIT
910
+ license_family: MIT
911
+ purls:
912
+ - pkg:pypi/hyperframe?source=hash-mapping
913
+ size: 17239
914
+ timestamp: 1733298862681
915
+ - conda: https://conda.anaconda.org/conda-forge/win-64/icu-75.1-he0c23c2_0.conda
916
+ sha256: 1d04369a1860a1e9e371b9fc82dd0092b616adcf057d6c88371856669280e920
917
+ md5: 8579b6bb8d18be7c0b27fb08adeeeb40
918
+ depends:
919
+ - ucrt >=10.0.20348.0
920
+ - vc >=14.2,<15
921
+ - vc14_runtime >=14.29.30139
922
+ license: MIT
923
+ license_family: MIT
924
+ purls: []
925
+ size: 14544252
926
+ timestamp: 1720853966338
927
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
928
+ sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87
929
+ md5: 39a4f67be3286c86d696df570b1201b7
930
+ depends:
931
+ - python >=3.9
932
+ license: BSD-3-Clause
933
+ license_family: BSD
934
+ purls:
935
+ - pkg:pypi/idna?source=hash-mapping
936
+ size: 49765
937
+ timestamp: 1733211921194
938
+ - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda
939
+ sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209
940
+ md5: 2d89243bfb53652c182a7c73182cce4f
941
+ license: LicenseRef-IntelSimplifiedSoftwareOct2022
942
+ license_family: Proprietary
943
+ purls: []
944
+ size: 1852356
945
+ timestamp: 1723739573141
946
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
947
+ sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
948
+ md5: 2752a6ed44105bfb18c9bef1177d9dcd
949
+ depends:
950
+ - markupsafe >=2.0
951
+ - python >=3.9
952
+ license: BSD-3-Clause
953
+ purls:
954
+ - pkg:pypi/jinja2?source=hash-mapping
955
+ size: 112561
956
+ timestamp: 1734824044952
957
+ - conda: https://conda.anaconda.org/conda-forge/win-64/kiwisolver-1.4.7-py310hc19bc0b_0.conda
958
+ sha256: a87dff54b753a2ee19188ab9491a63d40a08873f17c7797cd5c44467a2ff4f12
959
+ md5: 50d96539497fc7493cbe469fbb6b8b6e
960
+ depends:
961
+ - python >=3.10,<3.11.0a0
962
+ - python_abi 3.10.* *_cp310
963
+ - ucrt >=10.0.20348.0
964
+ - vc >=14.2,<15
965
+ - vc14_runtime >=14.29.30139
966
+ license: BSD-3-Clause
967
+ license_family: BSD
968
+ purls:
969
+ - pkg:pypi/kiwisolver?source=hash-mapping
970
+ size: 55447
971
+ timestamp: 1725459813185
972
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda
973
+ sha256: f9fd9e80e46358a57d9bb97b1e37a03da4022143b019aa3c4476d8a7795de290
974
+ md5: d3592435917b62a8becff3a60db674f6
975
+ depends:
976
+ - libjpeg-turbo >=3.0.0,<4.0a0
977
+ - libtiff >=4.6.0,<4.8.0a0
978
+ - ucrt >=10.0.20348.0
979
+ - vc >=14.2,<15
980
+ - vc14_runtime >=14.29.30139
981
+ license: MIT
982
+ license_family: MIT
983
+ purls: []
984
+ size: 507632
985
+ timestamp: 1701648249706
986
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2
987
+ sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488
988
+ md5: 1900cb3cab5055833cfddb0ba233b074
989
+ depends:
990
+ - vc >=14.2,<15
991
+ - vs2015_runtime >=14.29.30037
992
+ license: Apache-2.0
993
+ license_family: Apache
994
+ purls: []
995
+ size: 194365
996
+ timestamp: 1657977692274
997
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-26_win64_mkl.conda
998
+ build_number: 26
999
+ sha256: d631993a5cf5b8d3201f881084fce7ff6a26cd49883e189bf582cd0b7975c80a
1000
+ md5: ecfe732dbad1be001826fdb7e5e891b5
1001
+ depends:
1002
+ - mkl 2024.2.2 h66d3029_15
1003
+ constrains:
1004
+ - liblapacke 3.9.0 26_win64_mkl
1005
+ - liblapack 3.9.0 26_win64_mkl
1006
+ - blas * mkl
1007
+ - libcblas 3.9.0 26_win64_mkl
1008
+ license: BSD-3-Clause
1009
+ license_family: BSD
1010
+ purls: []
1011
+ size: 3733122
1012
+ timestamp: 1734432745507
1013
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda
1014
+ sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c
1015
+ md5: f7dc9a8f21d74eab46456df301da2972
1016
+ depends:
1017
+ - ucrt >=10.0.20348.0
1018
+ - vc >=14.2,<15
1019
+ - vc14_runtime >=14.29.30139
1020
+ license: MIT
1021
+ license_family: MIT
1022
+ purls: []
1023
+ size: 70526
1024
+ timestamp: 1725268159739
1025
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda
1026
+ sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f
1027
+ md5: 9bae75ce723fa34e98e239d21d752a7e
1028
+ depends:
1029
+ - libbrotlicommon 1.1.0 h2466b09_2
1030
+ - ucrt >=10.0.20348.0
1031
+ - vc >=14.2,<15
1032
+ - vc14_runtime >=14.29.30139
1033
+ license: MIT
1034
+ license_family: MIT
1035
+ purls: []
1036
+ size: 32685
1037
+ timestamp: 1725268208844
1038
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda
1039
+ sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1
1040
+ md5: 85741a24d97954a991e55e34bc55990b
1041
+ depends:
1042
+ - libbrotlicommon 1.1.0 h2466b09_2
1043
+ - ucrt >=10.0.20348.0
1044
+ - vc >=14.2,<15
1045
+ - vc14_runtime >=14.29.30139
1046
+ license: MIT
1047
+ license_family: MIT
1048
+ purls: []
1049
+ size: 245929
1050
+ timestamp: 1725268238259
1051
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-26_win64_mkl.conda
1052
+ build_number: 26
1053
+ sha256: 66699c4f84fd36b67a34a7ac59fb86e73ee0c5b3c3502441041c8dd51f0a7d49
1054
+ md5: 652f3adcb9d329050a325416edb14246
1055
+ depends:
1056
+ - libblas 3.9.0 26_win64_mkl
1057
+ constrains:
1058
+ - liblapacke 3.9.0 26_win64_mkl
1059
+ - liblapack 3.9.0 26_win64_mkl
1060
+ - blas * mkl
1061
+ license: BSD-3-Clause
1062
+ license_family: BSD
1063
+ purls: []
1064
+ size: 3732146
1065
+ timestamp: 1734432785653
1066
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda
1067
+ sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8
1068
+ md5: a9624935147a25b06013099d3038e467
1069
+ depends:
1070
+ - ucrt >=10.0.20348.0
1071
+ - vc >=14.2,<15
1072
+ - vc14_runtime >=14.29.30139
1073
+ license: MIT
1074
+ license_family: MIT
1075
+ purls: []
1076
+ size: 155723
1077
+ timestamp: 1734374084110
1078
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda
1079
+ sha256: 0c0447bf20d1013d5603499de93a16b6faa92d7ead870d96305c0f065b6a5a12
1080
+ md5: eb383771c680aa792feb529eaf9df82f
1081
+ depends:
1082
+ - ucrt >=10.0.20348.0
1083
+ - vc >=14.2,<15
1084
+ - vc14_runtime >=14.29.30139
1085
+ constrains:
1086
+ - expat 2.6.4.*
1087
+ license: MIT
1088
+ license_family: MIT
1089
+ purls: []
1090
+ size: 139068
1091
+ timestamp: 1730967442102
1092
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
1093
+ sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5
1094
+ md5: 2c96d1b6915b408893f9472569dee135
1095
+ depends:
1096
+ - vc >=14.1,<15.0a0
1097
+ - vs2015_runtime >=14.16.27012
1098
+ license: MIT
1099
+ license_family: MIT
1100
+ purls: []
1101
+ size: 42063
1102
+ timestamp: 1636489106777
1103
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_1.conda
1104
+ sha256: ef840e797714440bb10b69446d815966fff41fdac79f79c4e19c475d81cd375d
1105
+ md5: 75fdd34824997a0f9950a703b15d8ac5
1106
+ depends:
1107
+ - _openmp_mutex >=4.5
1108
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
1109
+ constrains:
1110
+ - libgcc-ng ==14.2.0=*_1
1111
+ - libgomp 14.2.0 h1383e82_1
1112
+ - msys2-conda-epoch <0.0a0
1113
+ license: GPL-3.0-only WITH GCC-exception-3.1
1114
+ license_family: GPL
1115
+ purls: []
1116
+ size: 666386
1117
+ timestamp: 1729089506769
1118
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.82.2-h7025463_0.conda
1119
+ sha256: 7dfbf492b736f8d379f8c3b32a823f0bf2167ff69963e4c940339b146a04c54a
1120
+ md5: 3e379c1b908a7101ecbc503def24613f
1121
+ depends:
1122
+ - libffi >=3.4,<4.0a0
1123
+ - libiconv >=1.17,<2.0a0
1124
+ - libintl >=0.22.5,<1.0a0
1125
+ - libzlib >=1.3.1,<2.0a0
1126
+ - pcre2 >=10.44,<10.45.0a0
1127
+ - ucrt >=10.0.20348.0
1128
+ - vc >=14.2,<15
1129
+ - vc14_runtime >=14.29.30139
1130
+ constrains:
1131
+ - glib 2.82.2 *_0
1132
+ license: LGPL-2.1-or-later
1133
+ purls: []
1134
+ size: 3810166
1135
+ timestamp: 1729192227078
1136
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_1.conda
1137
+ sha256: d8739b834608f35775209b032f0c2be752ef187863c7ec847afcebe2f681be4e
1138
+ md5: 9e2d4d1214df6f21cba12f6eff4972f9
1139
+ depends:
1140
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
1141
+ constrains:
1142
+ - msys2-conda-epoch <0.0a0
1143
+ license: GPL-3.0-only WITH GCC-exception-3.1
1144
+ license_family: GPL
1145
+ purls: []
1146
+ size: 524249
1147
+ timestamp: 1729089441747
1148
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda
1149
+ sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842
1150
+ md5: b87a0ac5ab6495d8225db5dc72dd21cd
1151
+ depends:
1152
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
1153
+ - libxml2 >=2.13.4,<3.0a0
1154
+ - ucrt >=10.0.20348.0
1155
+ - vc >=14.2,<15
1156
+ - vc14_runtime >=14.29.30139
1157
+ license: BSD-3-Clause
1158
+ license_family: BSD
1159
+ purls: []
1160
+ size: 2390021
1161
+ timestamp: 1731375651179
1162
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda
1163
+ sha256: 5f844dd19b046d43174ad80c6ea75b5d504020e3b63cfbc4ace97b8730d35c7b
1164
+ md5: e1eb10b1cca179f2baa3601e4efc8712
1165
+ depends:
1166
+ - ucrt >=10.0.20348.0
1167
+ - vc >=14.2,<15
1168
+ - vc14_runtime >=14.29.30139
1169
+ license: LGPL-2.1-only
1170
+ purls: []
1171
+ size: 636146
1172
+ timestamp: 1702682547199
1173
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda
1174
+ sha256: c7e4600f28bcada8ea81456a6530c2329312519efcf0c886030ada38976b0511
1175
+ md5: 2cf0cf76cc15d360dfa2f17fd6cf9772
1176
+ depends:
1177
+ - libiconv >=1.17,<2.0a0
1178
+ license: LGPL-2.1-or-later
1179
+ purls: []
1180
+ size: 95568
1181
+ timestamp: 1723629479451
1182
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda
1183
+ sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff
1184
+ md5: 3f1b948619c45b1ca714d60c7389092c
1185
+ depends:
1186
+ - ucrt >=10.0.20348.0
1187
+ - vc >=14.2,<15
1188
+ - vc14_runtime >=14.29.30139
1189
+ constrains:
1190
+ - jpeg <0.0.0a
1191
+ license: IJG AND BSD-3-Clause AND Zlib
1192
+ purls: []
1193
+ size: 822966
1194
+ timestamp: 1694475223854
1195
+ - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-26_win64_mkl.conda
1196
+ build_number: 26
1197
+ sha256: 6701bd162d105531b75d05acf82b4ad9fbc5a24ffbccf8c66efa9e72c386b33c
1198
+ md5: 0a717f5fda7279b77bcce671b324408a
1199
+ depends:
1200
+ - libblas 3.9.0 26_win64_mkl
1201
+ constrains:
1202
+ - liblapacke 3.9.0 26_win64_mkl
1203
+ - blas * mkl
1204
+ - libcblas 3.9.0 26_win64_mkl
1205
+ license: BSD-3-Clause
1206
+ license_family: BSD
1207
+ purls: []
1208
+ size: 3732160
1209
+ timestamp: 1734432822278
1210
+ - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.3-h2466b09_1.conda
1211
+ sha256: 24d04bd55adfa44c421c99ce169df38cb1ad2bba5f43151bc847fc802496a1fa
1212
+ md5: 015b9c0bd1eef60729ab577a38aaf0b5
1213
+ depends:
1214
+ - ucrt >=10.0.20348.0
1215
+ - vc >=14.2,<15
1216
+ - vc14_runtime >=14.29.30139
1217
+ license: 0BSD
1218
+ purls: []
1219
+ size: 104332
1220
+ timestamp: 1733407872569
1221
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2
1222
+ sha256: b2e5ec193762a5b4f905f8100437370e164df3db0ea5c18b4ce09390f5d3d525
1223
+ md5: e35a6bcfeb20ea83aab21dfc50ae62a4
1224
+ depends:
1225
+ - vc >=14.1,<15.0a0
1226
+ - vs2015_runtime >=14.16.27012
1227
+ license: BSD-3-Clause
1228
+ license_family: BSD
1229
+ purls: []
1230
+ size: 260615
1231
+ timestamp: 1606824019288
1232
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.44-h3ca93ac_0.conda
1233
+ sha256: 0d3d6ff9225f6918ac225e3839c0d91e5af1da08a4ebf59cac1bfd86018db945
1234
+ md5: 639ac6b55a40aa5de7b8c1b4d78f9e81
1235
+ depends:
1236
+ - libzlib >=1.3.1,<2.0a0
1237
+ - ucrt >=10.0.20348.0
1238
+ - vc >=14.2,<15
1239
+ - vc14_runtime >=14.29.30139
1240
+ license: zlib-acknowledgement
1241
+ purls: []
1242
+ size: 348933
1243
+ timestamp: 1726235196095
1244
+ - conda: https://conda.anaconda.org/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_2.conda
1245
+ sha256: dded6c84053485ed26088215e2b850a81d2995b0637a6e984521c786a749bc5b
1246
+ md5: 2ef0210889174157f26990bd3e22deb7
1247
+ depends:
1248
+ - cairo >=1.18.2,<2.0a0
1249
+ - gdk-pixbuf >=2.42.12,<3.0a0
1250
+ - libglib >=2.82.2,<3.0a0
1251
+ - libxml2 >=2.13.5,<3.0a0
1252
+ - pango >=1.54.0,<2.0a0
1253
+ - ucrt >=10.0.20348.0
1254
+ - vc >=14.3,<15
1255
+ - vc14_runtime >=14.42.34433
1256
+ license: LGPL-2.1-or-later
1257
+ purls: []
1258
+ size: 3877009
1259
+ timestamp: 1734902835341
1260
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.47.2-h67fdade_0.conda
1261
+ sha256: ecfc0182c3b2e63c870581be1fa0e4dbdfec70d2011cb4f5bde416ece26c41df
1262
+ md5: ff00095330e0d35a16bd3bdbd1a2d3e7
1263
+ depends:
1264
+ - ucrt >=10.0.20348.0
1265
+ - vc >=14.2,<15
1266
+ - vc14_runtime >=14.29.30139
1267
+ license: Unlicense
1268
+ purls: []
1269
+ size: 891292
1270
+ timestamp: 1733762116902
1271
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda
1272
+ sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768
1273
+ md5: defed79ff7a9164ad40320e3f116a138
1274
+ depends:
1275
+ - lerc >=4.0.0,<5.0a0
1276
+ - libdeflate >=1.23,<1.24.0a0
1277
+ - libjpeg-turbo >=3.0.0,<4.0a0
1278
+ - liblzma >=5.6.3,<6.0a0
1279
+ - libzlib >=1.3.1,<2.0a0
1280
+ - ucrt >=10.0.20348.0
1281
+ - vc >=14.2,<15
1282
+ - vc14_runtime >=14.29.30139
1283
+ - zstd >=1.5.6,<1.6.0a0
1284
+ license: HPND
1285
+ purls: []
1286
+ size: 978878
1287
+ timestamp: 1734399004259
1288
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda
1289
+ sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f
1290
+ md5: 33f7313967072c6e6d8f865f5493c7ae
1291
+ depends:
1292
+ - ucrt >=10.0.20348.0
1293
+ - vc >=14.2,<15
1294
+ - vc14_runtime >=14.29.30139
1295
+ constrains:
1296
+ - libwebp 1.5.0
1297
+ license: BSD-3-Clause
1298
+ purls: []
1299
+ size: 273661
1300
+ timestamp: 1734777665516
1301
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_8.conda
1302
+ sha256: 6d5e158813ab8d553fbb0fedd0abe7bf92970b0be3a9ddf12da0f6cbad78f506
1303
+ md5: 03cccbba200ee0523bde1f3dad60b1f3
1304
+ depends:
1305
+ - ucrt
1306
+ constrains:
1307
+ - pthreads-win32 <0.0a0
1308
+ - msys2-conda-epoch <0.0a0
1309
+ license: MIT AND BSD-3-Clause-Clear
1310
+ purls: []
1311
+ size: 35433
1312
+ timestamp: 1724681489463
1313
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda
1314
+ sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737
1315
+ md5: a69bbf778a462da324489976c84cfc8c
1316
+ depends:
1317
+ - libgcc >=13
1318
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
1319
+ - pthread-stubs
1320
+ - ucrt >=10.0.20348.0
1321
+ - xorg-libxau >=1.0.11,<2.0a0
1322
+ - xorg-libxdmcp
1323
+ license: MIT
1324
+ license_family: MIT
1325
+ purls: []
1326
+ size: 1208687
1327
+ timestamp: 1727279378819
1328
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.13.5-he286e8c_1.conda
1329
+ sha256: 084dd4dde342f13c43ee418d153ac5b2610f95be029073a15fa9dda22b130d06
1330
+ md5: 77eaa84f90fc90643c5a0be0aa9bdd1b
1331
+ depends:
1332
+ - libiconv >=1.17,<2.0a0
1333
+ - libzlib >=1.3.1,<2.0a0
1334
+ - ucrt >=10.0.20348.0
1335
+ - vc >=14.2,<15
1336
+ - vc14_runtime >=14.29.30139
1337
+ license: MIT
1338
+ license_family: MIT
1339
+ purls: []
1340
+ size: 1612294
1341
+ timestamp: 1733443909984
1342
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
1343
+ sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
1344
+ md5: 41fbfac52c601159df6c01f875de31b9
1345
+ depends:
1346
+ - ucrt >=10.0.20348.0
1347
+ - vc >=14.2,<15
1348
+ - vc14_runtime >=14.29.30139
1349
+ constrains:
1350
+ - zlib 1.3.1 *_2
1351
+ license: Zlib
1352
+ license_family: Other
1353
+ purls: []
1354
+ size: 55476
1355
+ timestamp: 1727963768015
1356
+ - pypi: https://files.pythonhosted.org/packages/91/00/9b4c5557b694fb8d3730d006afbb2facc36f27e2c0f136d9cc009f4b1ffa/llama_cpp_python-0.3.5.tar.gz
1357
+ name: llama-cpp-python
1358
+ version: 0.3.5
1359
+ sha256: f5ce47499d53d3973e28ca5bdaf2dfe820163fa3fb67e3050f98e2e9b58d2cf6
1360
+ requires_dist:
1361
+ - typing-extensions>=4.5.0
1362
+ - numpy>=1.20.0
1363
+ - diskcache>=5.6.1
1364
+ - jinja2>=2.11.3
1365
+ - uvicorn>=0.22.0 ; extra == 'server'
1366
+ - fastapi>=0.100.0 ; extra == 'server'
1367
+ - pydantic-settings>=2.0.1 ; extra == 'server'
1368
+ - sse-starlette>=1.6.1 ; extra == 'server'
1369
+ - starlette-context>=0.3.6,<0.4 ; extra == 'server'
1370
+ - pyyaml>=5.1 ; extra == 'server'
1371
+ - pytest>=7.4.0 ; extra == 'test'
1372
+ - httpx>=0.24.1 ; extra == 'test'
1373
+ - scipy>=1.10 ; extra == 'test'
1374
+ - fastapi>=0.100.0 ; extra == 'test'
1375
+ - sse-starlette>=1.6.1 ; extra == 'test'
1376
+ - starlette-context>=0.3.6,<0.4 ; extra == 'test'
1377
+ - pydantic-settings>=2.0.1 ; extra == 'test'
1378
+ - huggingface-hub>=0.23.0 ; extra == 'test'
1379
+ - black>=23.3.0 ; extra == 'dev'
1380
+ - twine>=4.0.2 ; extra == 'dev'
1381
+ - mkdocs>=1.4.3 ; extra == 'dev'
1382
+ - mkdocstrings[python]>=0.22.0 ; extra == 'dev'
1383
+ - mkdocs-material>=9.1.18 ; extra == 'dev'
1384
+ - pytest>=7.4.0 ; extra == 'dev'
1385
+ - httpx>=0.24.1 ; extra == 'dev'
1386
+ - llama-cpp-python[dev,server,test] ; extra == 'all'
1387
+ requires_python: '>=3.8'
1388
+ - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda
1389
+ sha256: 0fbacdfb31e55964152b24d5567e9a9996e1e7902fb08eb7d91b5fd6ce60803a
1390
+ md5: fee3164ac23dfca50cfcc8b85ddefb81
1391
+ depends:
1392
+ - mdurl >=0.1,<1
1393
+ - python >=3.9
1394
+ license: MIT
1395
+ license_family: MIT
1396
+ purls:
1397
+ - pkg:pypi/markdown-it-py?source=hash-mapping
1398
+ size: 64430
1399
+ timestamp: 1733250550053
1400
+ - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.5-py310ha8f682b_1.conda
1401
+ sha256: b717edee32f07be71aa7bbd8f429b77d5db760abe6332b78b5dacd7616913ad6
1402
+ md5: 11f86944e249ec821eebd0e612284d80
1403
+ depends:
1404
+ - python >=3.10,<3.11.0a0
1405
+ - python_abi 3.10.* *_cp310
1406
+ - ucrt >=10.0.20348.0
1407
+ - vc >=14.2,<15
1408
+ - vc14_runtime >=14.29.30139
1409
+ constrains:
1410
+ - jinja2 >=3.0.0
1411
+ license: BSD-3-Clause
1412
+ license_family: BSD
1413
+ purls:
1414
+ - pkg:pypi/markupsafe?source=hash-mapping
1415
+ size: 26730
1416
+ timestamp: 1724959968228
1417
+ - conda: https://conda.anaconda.org/conda-forge/win-64/matplotlib-base-3.10.0-py310h37e0a56_0.conda
1418
+ sha256: c72979d4a0128cc88d7337c16b5f57e8893d8f87a1e12e83386abff53366ac98
1419
+ md5: c47834c1a1299c9045c0fffe97d94dda
1420
+ depends:
1421
+ - contourpy >=1.0.1
1422
+ - cycler >=0.10
1423
+ - fonttools >=4.22.0
1424
+ - freetype >=2.12.1,<3.0a0
1425
+ - kiwisolver >=1.3.1
1426
+ - numpy >=1.19,<3
1427
+ - numpy >=1.23
1428
+ - packaging >=20.0
1429
+ - pillow >=8
1430
+ - pyparsing >=2.3.1
1431
+ - python >=3.10,<3.11.0a0
1432
+ - python-dateutil >=2.7
1433
+ - python_abi 3.10.* *_cp310
1434
+ - qhull >=2020.2,<2020.3.0a0
1435
+ - ucrt >=10.0.20348.0
1436
+ - vc >=14.2,<15
1437
+ - vc14_runtime >=14.29.30139
1438
+ license: PSF-2.0
1439
+ license_family: PSF
1440
+ purls:
1441
+ - pkg:pypi/matplotlib?source=hash-mapping
1442
+ size: 7062608
1443
+ timestamp: 1734381491265
1444
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda
1445
+ sha256: 78c1bbe1723449c52b7a9df1af2ee5f005209f67e40b6e1d3c7619127c43b1c7
1446
+ md5: 592132998493b3ff25fd7479396e8351
1447
+ depends:
1448
+ - python >=3.9
1449
+ license: MIT
1450
+ license_family: MIT
1451
+ purls:
1452
+ - pkg:pypi/mdurl?source=hash-mapping
1453
+ size: 14465
1454
+ timestamp: 1733255681319
1455
+ - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.2.2-h66d3029_15.conda
1456
+ sha256: 20e52b0389586d0b914a49cd286c5ccc9c47949bed60ca6df004d1d295f2edbd
1457
+ md5: 302dff2807f2927b3e9e0d19d60121de
1458
+ depends:
1459
+ - intel-openmp 2024.*
1460
+ - tbb 2021.*
1461
+ license: LicenseRef-IntelSimplifiedSoftwareOct2022
1462
+ license_family: Proprietary
1463
+ purls: []
1464
+ size: 103106385
1465
+ timestamp: 1730232843711
1466
+ - conda: https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
1467
+ sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306
1468
+ md5: 2ba8498c1018c1e9c61eb99b973dfe19
1469
+ depends:
1470
+ - python
1471
+ license: Apache-2.0
1472
+ license_family: Apache
1473
+ purls:
1474
+ - pkg:pypi/munkres?source=hash-mapping
1475
+ size: 12452
1476
+ timestamp: 1600387789153
1477
+ - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-2.2.1-py310hb9d903e_0.conda
1478
+ sha256: 942ec24291d65e00e718765016b1f6b6be9bc5f09137dc14c21e047b94a09d30
1479
+ md5: 25361f25ec68789cea29b14b412970e8
1480
+ depends:
1481
+ - libblas >=3.9.0,<4.0a0
1482
+ - libcblas >=3.9.0,<4.0a0
1483
+ - liblapack >=3.9.0,<4.0a0
1484
+ - python >=3.10,<3.11.0a0
1485
+ - python_abi 3.10.* *_cp310
1486
+ - ucrt >=10.0.20348.0
1487
+ - vc >=14.2,<15
1488
+ - vc14_runtime >=14.29.30139
1489
+ constrains:
1490
+ - numpy-base <0a0
1491
+ license: BSD-3-Clause
1492
+ purls:
1493
+ - pkg:pypi/numpy?source=hash-mapping
1494
+ size: 6420026
1495
+ timestamp: 1734905273023
1496
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openh264-2.5.0-ha9db3cd_0.conda
1497
+ sha256: 78f1610033b6de73111e29552d65e1124ceb652fe003d32585ca38f0cc351cb6
1498
+ md5: 4df5f64d919b886181a16bc46b620c38
1499
+ depends:
1500
+ - ucrt >=10.0.20348.0
1501
+ - vc >=14.2,<15
1502
+ - vc14_runtime >=14.29.30139
1503
+ license: BSD-2-Clause
1504
+ license_family: BSD
1505
+ purls: []
1506
+ size: 410131
1507
+ timestamp: 1731068326412
1508
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda
1509
+ sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3
1510
+ md5: fc050366dd0b8313eb797ed1ffef3a29
1511
+ depends:
1512
+ - libpng >=1.6.44,<1.7.0a0
1513
+ - libtiff >=4.7.0,<4.8.0a0
1514
+ - libzlib >=1.3.1,<2.0a0
1515
+ - ucrt >=10.0.20348.0
1516
+ - vc >=14.2,<15
1517
+ - vc14_runtime >=14.29.30139
1518
+ license: BSD-2-Clause
1519
+ license_family: BSD
1520
+ purls: []
1521
+ size: 240148
1522
+ timestamp: 1733817010335
1523
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-h2466b09_0.conda
1524
+ sha256: e03045a0837e01ff5c75e9273a572553e7522290799807f918c917a9826a6484
1525
+ md5: d0d805d9b5524a14efb51b3bff965e83
1526
+ depends:
1527
+ - ca-certificates
1528
+ - ucrt >=10.0.20348.0
1529
+ - vc >=14.2,<15
1530
+ - vc14_runtime >=14.29.30139
1531
+ license: Apache-2.0
1532
+ license_family: Apache
1533
+ purls: []
1534
+ size: 8491156
1535
+ timestamp: 1731379715927
1536
+ - conda: https://conda.anaconda.org/conda-forge/win-64/orjson-3.10.12-py310hc226416_0.conda
1537
+ sha256: 566ff6d89d5088d860e594797f5996be4f9a80126422a5ad16bde14a8c086b0a
1538
+ md5: 0c8012a70bba08a6b33b723716514ee6
1539
+ depends:
1540
+ - python >=3.10,<3.11.0a0
1541
+ - python_abi 3.10.* *_cp310
1542
+ - ucrt >=10.0.20348.0
1543
+ - vc >=14.2,<15
1544
+ - vc14_runtime >=14.29.30139
1545
+ license: Apache-2.0
1546
+ license_family: Apache
1547
+ purls:
1548
+ - pkg:pypi/orjson?source=hash-mapping
1549
+ size: 187711
1550
+ timestamp: 1732413738681
1551
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
1552
+ sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1
1553
+ md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa
1554
+ depends:
1555
+ - python >=3.8
1556
+ license: Apache-2.0
1557
+ license_family: APACHE
1558
+ purls:
1559
+ - pkg:pypi/packaging?source=hash-mapping
1560
+ size: 60164
1561
+ timestamp: 1733203368787
1562
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py310hb4db72f_1.conda
1563
+ sha256: 1fa40b4a351f1eb7a878d1f25f6bec71664699cd4a39c8ed5e2221f53ecca0c4
1564
+ md5: 565b3f19282642a23e5ff9bbfb01569c
1565
+ depends:
1566
+ - numpy >=1.19,<3
1567
+ - numpy >=1.22.4
1568
+ - python >=3.10,<3.11.0a0
1569
+ - python-dateutil >=2.8.1
1570
+ - python-tzdata >=2022a
1571
+ - python_abi 3.10.* *_cp310
1572
+ - pytz >=2020.1,<2024.2
1573
+ - ucrt >=10.0.20348.0
1574
+ - vc >=14.2,<15
1575
+ - vc14_runtime >=14.29.30139
1576
+ license: BSD-3-Clause
1577
+ license_family: BSD
1578
+ purls:
1579
+ - pkg:pypi/pandas?source=hash-mapping
1580
+ size: 11810567
1581
+ timestamp: 1726879420659
1582
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pango-1.54.0-h286b592_4.conda
1583
+ sha256: 9fd32dcd60271acaf63308f45c0eba7187134255e49659f5a62f689f55107d47
1584
+ md5: a7f198206d80c648f787f825dc91417c
1585
+ depends:
1586
+ - cairo >=1.18.2,<2.0a0
1587
+ - fontconfig >=2.15.0,<3.0a0
1588
+ - fonts-conda-ecosystem
1589
+ - freetype >=2.12.1,<3.0a0
1590
+ - fribidi >=1.0.10,<2.0a0
1591
+ - harfbuzz >=10.1.0,<11.0a0
1592
+ - libexpat >=2.6.4,<3.0a0
1593
+ - libglib >=2.82.2,<3.0a0
1594
+ - libpng >=1.6.44,<1.7.0a0
1595
+ - libzlib >=1.3.1,<2.0a0
1596
+ - ucrt >=10.0.20348.0
1597
+ - vc >=14.2,<15
1598
+ - vc14_runtime >=14.29.30139
1599
+ license: LGPL-2.1-or-later
1600
+ purls: []
1601
+ size: 451089
1602
+ timestamp: 1734582716802
1603
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda
1604
+ sha256: f4a12cbf8a7c5bfa2592b9dc92b492c438781898e5b02f397979b0be6e1b5851
1605
+ md5: a3a3baddcfb8c80db84bec3cb7746fb8
1606
+ depends:
1607
+ - bzip2 >=1.0.8,<2.0a0
1608
+ - libzlib >=1.3.1,<2.0a0
1609
+ - ucrt >=10.0.20348.0
1610
+ - vc >=14.2,<15
1611
+ - vc14_runtime >=14.29.30139
1612
+ license: BSD-3-Clause
1613
+ license_family: BSD
1614
+ purls: []
1615
+ size: 820831
1616
+ timestamp: 1723489427046
1617
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pillow-10.4.0-py310h3e38d90_1.conda
1618
+ sha256: fb730c9510ccf16579762db20383eaee447bda3f5f2f0b0691029c87af462c7a
1619
+ md5: d9a32c4725436b99df60fdc9c14545d1
1620
+ depends:
1621
+ - freetype >=2.12.1,<3.0a0
1622
+ - lcms2 >=2.16,<3.0a0
1623
+ - libjpeg-turbo >=3.0.0,<4.0a0
1624
+ - libtiff >=4.6.0,<4.8.0a0
1625
+ - libwebp-base >=1.4.0,<2.0a0
1626
+ - libxcb >=1.16,<2.0.0a0
1627
+ - libzlib >=1.3.1,<2.0a0
1628
+ - openjpeg >=2.5.2,<3.0a0
1629
+ - python >=3.10,<3.11.0a0
1630
+ - python_abi 3.10.* *_cp310
1631
+ - tk >=8.6.13,<8.7.0a0
1632
+ - ucrt >=10.0.20348.0
1633
+ - vc >=14.2,<15
1634
+ - vc14_runtime >=14.29.30139
1635
+ license: HPND
1636
+ purls:
1637
+ - pkg:pypi/pillow?source=hash-mapping
1638
+ size: 42223178
1639
+ timestamp: 1726075720583
1640
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pixman-0.44.2-had0cd8c_0.conda
1641
+ sha256: 6648bd6e050f37c062ced1bbd4201dee617c3dacda1fc3a0de70335cf736f11b
1642
+ md5: c720ac9a3bd825bf8b4dc7523ea49be4
1643
+ depends:
1644
+ - ucrt >=10.0.20348.0
1645
+ - vc >=14.2,<15
1646
+ - vc14_runtime >=14.29.30139
1647
+ license: MIT
1648
+ license_family: MIT
1649
+ purls: []
1650
+ size: 455582
1651
+ timestamp: 1733699458861
1652
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda
1653
+ sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b
1654
+ md5: 3c8f2573569bb816483e5cf57efbbe29
1655
+ depends:
1656
+ - libgcc >=13
1657
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
1658
+ - ucrt >=10.0.20348.0
1659
+ license: MIT
1660
+ license_family: MIT
1661
+ purls: []
1662
+ size: 9389
1663
+ timestamp: 1726802555076
1664
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda
1665
+ sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6
1666
+ md5: 12c566707c80111f9799308d9e265aef
1667
+ depends:
1668
+ - python >=3.9
1669
+ - python
1670
+ license: BSD-3-Clause
1671
+ license_family: BSD
1672
+ purls: []
1673
+ size: 110100
1674
+ timestamp: 1733195786147
1675
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
1676
+ sha256: e68400714532a33f34b44ddaee3e27e8dd6c83c3f31c7892ec10b84d13aa8b59
1677
+ md5: 93bccf4d7a58c9140d59491de21e044b
1678
+ depends:
1679
+ - annotated-types >=0.6.0
1680
+ - pydantic-core 2.27.2
1681
+ - python >=3.9
1682
+ - typing-extensions >=4.6.1
1683
+ - typing_extensions >=4.12.2
1684
+ license: MIT
1685
+ license_family: MIT
1686
+ purls:
1687
+ - pkg:pypi/pydantic?source=hash-mapping
1688
+ size: 296557
1689
+ timestamp: 1734609427697
1690
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pydantic-core-2.27.2-py310hc226416_0.conda
1691
+ sha256: 9c5e8eb73caa4c8f1945ac22af392495221f1809055114c4cc23609a8622a1eb
1692
+ md5: 3df8c74e13bd1b7ec1292b5c6b744509
1693
+ depends:
1694
+ - python >=3.10,<3.11.0a0
1695
+ - python_abi 3.10.* *_cp310
1696
+ - typing-extensions >=4.6.0,!=4.7.0
1697
+ - ucrt >=10.0.20348.0
1698
+ - vc >=14.2,<15
1699
+ - vc14_runtime >=14.29.30139
1700
+ license: MIT
1701
+ license_family: MIT
1702
+ purls:
1703
+ - pkg:pypi/pydantic-core?source=hash-mapping
1704
+ size: 1599010
1705
+ timestamp: 1734571990756
1706
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydub-0.25.1-pyhd8ed1ab_1.conda
1707
+ sha256: 8a52c6937a1e0f27f5cd71d55572597c8b21e11956c2da974dddc16c17119633
1708
+ md5: a2fae5e32bb95478386c58f9c2cac980
1709
+ depends:
1710
+ - python >=3.9
1711
+ license: MIT
1712
+ license_family: MIT
1713
+ purls:
1714
+ - pkg:pypi/pydub?source=hash-mapping
1715
+ size: 33535
1716
+ timestamp: 1734638151010
1717
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda
1718
+ sha256: 0d6133545f268b2b89c2617c196fc791f365b538d4057ecd636d658c3b1e885d
1719
+ md5: b38dc0206e2a530e5c2cf11dc086b31a
1720
+ depends:
1721
+ - python >=3.9
1722
+ license: BSD-2-Clause
1723
+ license_family: BSD
1724
+ purls:
1725
+ - pkg:pypi/pygments?source=hash-mapping
1726
+ size: 876700
1727
+ timestamp: 1733221731178
1728
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.2.0-pyhd8ed1ab_2.conda
1729
+ sha256: 09a5484532e24a33649ab612674fd0857bbdcfd6640a79d13a6690fb742a36e1
1730
+ md5: 4c05a2bcf87bb495512374143b57cf28
1731
+ depends:
1732
+ - python >=3.9
1733
+ license: MIT
1734
+ license_family: MIT
1735
+ purls:
1736
+ - pkg:pypi/pyparsing?source=compressed-mapping
1737
+ size: 92319
1738
+ timestamp: 1733222687746
1739
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda
1740
+ sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca
1741
+ md5: e2fd202833c4a981ce8a65974fe4abd1
1742
+ depends:
1743
+ - __win
1744
+ - python >=3.9
1745
+ - win_inet_pton
1746
+ license: BSD-3-Clause
1747
+ license_family: BSD
1748
+ purls:
1749
+ - pkg:pypi/pysocks?source=hash-mapping
1750
+ size: 21784
1751
+ timestamp: 1733217448189
1752
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.10.16-h37870fc_1_cpython.conda
1753
+ build_number: 1
1754
+ sha256: 3392db6a7a90864d3fd1ce281859a49e27ee68121b63eece2ae6f1dbb2a8aaf1
1755
+ md5: 5c292a7bd9c32a256ba7939b3e6dee03
1756
+ depends:
1757
+ - bzip2 >=1.0.8,<2.0a0
1758
+ - libffi >=3.4,<4.0a0
1759
+ - liblzma >=5.6.3,<6.0a0
1760
+ - libsqlite >=3.47.0,<4.0a0
1761
+ - libzlib >=1.3.1,<2.0a0
1762
+ - openssl >=3.4.0,<4.0a0
1763
+ - tk >=8.6.13,<8.7.0a0
1764
+ - tzdata
1765
+ - ucrt >=10.0.20348.0
1766
+ - vc >=14.2,<15
1767
+ - vc14_runtime >=14.29.30139
1768
+ constrains:
1769
+ - python_abi 3.10.* *_cp310
1770
+ license: Python-2.0
1771
+ purls: []
1772
+ size: 16061214
1773
+ timestamp: 1733408154785
1774
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda
1775
+ sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79
1776
+ md5: 5ba79d7c71f03c678c8ead841f347d6e
1777
+ depends:
1778
+ - python >=3.9
1779
+ - six >=1.5
1780
+ license: Apache-2.0
1781
+ license_family: APACHE
1782
+ purls:
1783
+ - pkg:pypi/python-dateutil?source=hash-mapping
1784
+ size: 222505
1785
+ timestamp: 1733215763718
1786
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_1.conda
1787
+ sha256: 99713f6b534fef94995c6c16fd21d59f3548784e9111775d692bdc7c44678f02
1788
+ md5: e5c6ed218664802d305e79cc2d4491de
1789
+ depends:
1790
+ - python >=3.9
1791
+ license: BSD-3-Clause
1792
+ license_family: BSD
1793
+ purls:
1794
+ - pkg:pypi/python-dotenv?source=compressed-mapping
1795
+ size: 24215
1796
+ timestamp: 1733243277223
1797
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.20-pyhff2d567_0.conda
1798
+ sha256: 1b03678d145b1675b757cba165a0d9803885807792f7eb4495e48a38858c3cca
1799
+ md5: a28c984e0429aff3ab7386f7de56de6f
1800
+ depends:
1801
+ - python >=3.9
1802
+ license: Apache-2.0
1803
+ license_family: Apache
1804
+ purls:
1805
+ - pkg:pypi/python-multipart?source=hash-mapping
1806
+ size: 27913
1807
+ timestamp: 1734420869885
1808
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.2-pyhd8ed1ab_1.conda
1809
+ sha256: 57c9a02ec25926fb48edca59b9ede107823e5d5c473b94a0e05cc0b9a193a642
1810
+ md5: c0def296b2f6d2dd7b030c2a7f66bb1f
1811
+ depends:
1812
+ - python >=3.9
1813
+ license: Apache-2.0
1814
+ license_family: APACHE
1815
+ purls:
1816
+ - pkg:pypi/tzdata?source=hash-mapping
1817
+ size: 142235
1818
+ timestamp: 1733235414217
1819
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-5_cp310.conda
1820
+ build_number: 5
1821
+ sha256: 0671bea4d5c5b8618ee7e2b1117d5a90901348ac459db57b654007f1644fa087
1822
+ md5: 3c510f4c4383f5fbdb12fdd971b30d49
1823
+ constrains:
1824
+ - python 3.10.* *_cpython
1825
+ license: BSD-3-Clause
1826
+ license_family: BSD
1827
+ purls: []
1828
+ size: 6715
1829
+ timestamp: 1723823141288
1830
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
1831
+ sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41
1832
+ md5: 3eeeeb9e4827ace8c0c1419c85d590ad
1833
+ depends:
1834
+ - python >=3.7
1835
+ license: MIT
1836
+ license_family: MIT
1837
+ purls:
1838
+ - pkg:pypi/pytz?source=hash-mapping
1839
+ size: 188538
1840
+ timestamp: 1706886944988
1841
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py310ha8f682b_1.conda
1842
+ sha256: b30056440fdff1d52e96303f539ba3b4a33c19070993a75cc15c5414cb2a8b1d
1843
+ md5: 308f62d05cbcbc633eeab4843def3b51
1844
+ depends:
1845
+ - python >=3.10,<3.11.0a0
1846
+ - python_abi 3.10.* *_cp310
1847
+ - ucrt >=10.0.20348.0
1848
+ - vc >=14.2,<15
1849
+ - vc14_runtime >=14.29.30139
1850
+ - yaml >=0.2.5,<0.3.0a0
1851
+ license: MIT
1852
+ license_family: MIT
1853
+ purls:
1854
+ - pkg:pypi/pyyaml?source=hash-mapping
1855
+ size: 156987
1856
+ timestamp: 1725456772886
1857
+ - conda: https://conda.anaconda.org/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda
1858
+ sha256: 887d53486a37bd870da62b8fa2ebe3993f912ad04bd755e7ed7c47ced97cbaa8
1859
+ md5: 854fbdff64b572b5c0b470f334d34c11
1860
+ depends:
1861
+ - ucrt >=10.0.20348.0
1862
+ - vc >=14.2,<15
1863
+ - vc14_runtime >=14.29.30139
1864
+ license: LicenseRef-Qhull
1865
+ purls: []
1866
+ size: 1377020
1867
+ timestamp: 1720814433486
1868
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
1869
+ sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad
1870
+ md5: a9b9368f3701a417eac9edbcae7cb737
1871
+ depends:
1872
+ - certifi >=2017.4.17
1873
+ - charset-normalizer >=2,<4
1874
+ - idna >=2.5,<4
1875
+ - python >=3.9
1876
+ - urllib3 >=1.21.1,<3
1877
+ constrains:
1878
+ - chardet >=3.0.2,<6
1879
+ license: Apache-2.0
1880
+ license_family: APACHE
1881
+ purls:
1882
+ - pkg:pypi/requests?source=compressed-mapping
1883
+ size: 58723
1884
+ timestamp: 1733217126197
1885
+ - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
1886
+ sha256: 06a760c5ae572e72e865d5a87e9fe3cc171e1a9c996e63daf3db52ff1a0b4457
1887
+ md5: 7aed65d4ff222bfb7335997aa40b7da5
1888
+ depends:
1889
+ - markdown-it-py >=2.2.0
1890
+ - pygments >=2.13.0,<3.0.0
1891
+ - python >=3.9
1892
+ - typing_extensions >=4.0.0,<5.0.0
1893
+ license: MIT
1894
+ license_family: MIT
1895
+ purls:
1896
+ - pkg:pypi/rich?source=hash-mapping
1897
+ size: 185646
1898
+ timestamp: 1733342347277
1899
+ - conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
1900
+ sha256: e558f8c254a9ff9164d069110da162fc79497d70c60f2c09a5d3d0d7101c5628
1901
+ md5: 4ba15ae9388b67d09782798347481f69
1902
+ depends:
1903
+ - python >=3.9
1904
+ - rich >=13.7.1
1905
+ - click >=8.1.7
1906
+ - typing_extensions >=4.12.2
1907
+ - python
1908
+ license: MIT
1909
+ license_family: MIT
1910
+ purls: []
1911
+ size: 17357
1912
+ timestamp: 1733750834072
1913
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.8.4-py310he03e3bc_0.conda
1914
+ sha256: 365b598d10ea345b233a0b6d8ee2b5a61c79a7d38b0b07cf972cb80944b1e291
1915
+ md5: d7d4726a641cc18ddd102a87ed09ba4b
1916
+ depends:
1917
+ - python >=3.10,<3.11.0a0
1918
+ - python_abi 3.10.* *_cp310
1919
+ - ucrt >=10.0.20348.0
1920
+ - vc >=14.2,<15
1921
+ - vc14_runtime >=14.29.30139
1922
+ license: MIT
1923
+ license_family: MIT
1924
+ purls:
1925
+ - pkg:pypi/ruff?source=hash-mapping
1926
+ size: 6929654
1927
+ timestamp: 1734954371895
1928
+ - conda: https://conda.anaconda.org/conda-forge/noarch/semantic_version-2.10.0-pyhd8ed1ab_0.tar.bz2
1929
+ sha256: f1cad72270a3de65107120d68d74d0bc944591fd6a56710fbcaa6651eea717ed
1930
+ md5: 7d5de798a497fbcd6720b862478975ed
1931
+ depends:
1932
+ - python >=2.7
1933
+ license: BSD-2-Clause
1934
+ license_family: BSD
1935
+ purls:
1936
+ - pkg:pypi/semantic-version?source=hash-mapping
1937
+ size: 17923
1938
+ timestamp: 1653579450384
1939
+ - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
1940
+ sha256: 0557c090913aa63cdbe821dbdfa038a321b488e22bc80196c4b3b1aace4914ef
1941
+ md5: 7c3c2a0f3ebdea2bbc35538d162b43bf
1942
+ depends:
1943
+ - python >=3.9
1944
+ license: MIT
1945
+ license_family: MIT
1946
+ purls:
1947
+ - pkg:pypi/shellingham?source=hash-mapping
1948
+ size: 14462
1949
+ timestamp: 1733301007770
1950
+ - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
1951
+ sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db
1952
+ md5: a451d576819089b0d672f18768be0f65
1953
+ depends:
1954
+ - python >=3.9
1955
+ license: MIT
1956
+ license_family: MIT
1957
+ purls:
1958
+ - pkg:pypi/six?source=hash-mapping
1959
+ size: 16385
1960
+ timestamp: 1733381032766
1961
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
1962
+ sha256: c2248418c310bdd1719b186796ae50a8a77ce555228b6acd32768e2543a15012
1963
+ md5: bf7a226e58dfb8346c70df36065d86c9
1964
+ depends:
1965
+ - python >=3.9
1966
+ license: Apache-2.0
1967
+ license_family: Apache
1968
+ purls:
1969
+ - pkg:pypi/sniffio?source=compressed-mapping
1970
+ size: 15019
1971
+ timestamp: 1733244175724
1972
+ - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
1973
+ sha256: b74fc76107487eb26624c01fc55bfab7eed03ae82e003333c86d8a1eeac53672
1974
+ md5: 0207dac04ae2200701fab697f0aaaac4
1975
+ depends:
1976
+ - anyio >=3.4.0,<5
1977
+ - python >=3.9
1978
+ - typing_extensions >=3.10.0
1979
+ license: BSD-3-Clause
1980
+ license_family: BSD
1981
+ purls:
1982
+ - pkg:pypi/starlette?source=hash-mapping
1983
+ size: 58838
1984
+ timestamp: 1733344472634
1985
+ - conda: https://conda.anaconda.org/conda-forge/win-64/svt-av1-2.3.0-he0c23c2_0.conda
1986
+ sha256: c25bf68ef411d41ee29f353acc698c482fdd087426a77398b7b41ce9d968519e
1987
+ md5: ac11ae1da661e573b71870b1191ce079
1988
+ depends:
1989
+ - ucrt >=10.0.20348.0
1990
+ - vc >=14.2,<15
1991
+ - vc14_runtime >=14.29.30139
1992
+ license: BSD-2-Clause
1993
+ license_family: BSD
1994
+ purls: []
1995
+ size: 1845727
1996
+ timestamp: 1730246453216
1997
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-h62715c5_1.conda
1998
+ sha256: 03cc5442046485b03dd1120d0f49d35a7e522930a2ab82f275e938e17b07b302
1999
+ md5: 9190dd0a23d925f7602f9628b3aed511
2000
+ depends:
2001
+ - libhwloc >=2.11.2,<2.11.3.0a0
2002
+ - ucrt >=10.0.20348.0
2003
+ - vc >=14.2,<15
2004
+ - vc14_runtime >=14.29.30139
2005
+ license: Apache-2.0
2006
+ license_family: APACHE
2007
+ purls: []
2008
+ size: 151460
2009
+ timestamp: 1732982860332
2010
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
2011
+ sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1
2012
+ md5: fc048363eb8f03cd1737600a5d08aafe
2013
+ depends:
2014
+ - ucrt >=10.0.20348.0
2015
+ - vc >=14.2,<15
2016
+ - vc14_runtime >=14.29.30139
2017
+ license: TCL
2018
+ license_family: BSD
2019
+ purls: []
2020
+ size: 3503410
2021
+ timestamp: 1699202577803
2022
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.0-pyha770c72_0.conda
2023
+ sha256: d56f30962d6ff3dad8468b8709dc5a7a4809535433a44bf51cbc034058de6c9d
2024
+ md5: e2d5f8153c4d4b5f4919ad1492775152
2025
+ depends:
2026
+ - python >=3.7
2027
+ license: MIT
2028
+ license_family: MIT
2029
+ purls:
2030
+ - pkg:pypi/tomlkit?source=hash-mapping
2031
+ size: 37086
2032
+ timestamp: 1690458478787
2033
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
2034
+ sha256: 5673b7104350a6998cb86cccf1d0058217d86950e8d6c927d8530606028edb1d
2035
+ md5: 4085c9db273a148e149c03627350e22c
2036
+ depends:
2037
+ - colorama
2038
+ - python >=3.7
2039
+ license: MPL-2.0 or MIT
2040
+ purls:
2041
+ - pkg:pypi/tqdm?source=hash-mapping
2042
+ size: 89484
2043
+ timestamp: 1732497312317
2044
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda
2045
+ sha256: ef695490e895c2ad552c77ec497b899b09fd4ad4ab07edcf5649f5994cf92a35
2046
+ md5: 170a0398946d8f5b454e592672b6fc20
2047
+ depends:
2048
+ - python >=3.9
2049
+ - typer-slim-standard 0.15.1 hd8ed1ab_0
2050
+ license: MIT
2051
+ license_family: MIT
2052
+ purls:
2053
+ - pkg:pypi/typer?source=hash-mapping
2054
+ size: 56175
2055
+ timestamp: 1733408582623
2056
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda
2057
+ sha256: d4965516f35e0805199de6596c4ac76c4ad3d6b012be35e532102f9e53ecb860
2058
+ md5: 0218b16f5a1dd569e575a7a6415489db
2059
+ depends:
2060
+ - click >=8.0.0
2061
+ - python >=3.9
2062
+ - typing_extensions >=3.7.4.3
2063
+ constrains:
2064
+ - rich >=10.11.0
2065
+ - typer >=0.15.1,<0.15.2.0a0
2066
+ - shellingham >=1.3.0
2067
+ license: MIT
2068
+ license_family: MIT
2069
+ purls:
2070
+ - pkg:pypi/typer-slim?source=hash-mapping
2071
+ size: 43592
2072
+ timestamp: 1733408569554
2073
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda
2074
+ sha256: f31c56fe98315da8b9ce848256c17e0b9f87896b41a6ccf0c9cc74644dcef20f
2075
+ md5: 4e603c43bfdfc7b533be087c3e070cc9
2076
+ depends:
2077
+ - rich
2078
+ - shellingham
2079
+ - typer-slim 0.15.1 pyhd8ed1ab_0
2080
+ license: MIT
2081
+ license_family: MIT
2082
+ purls: []
2083
+ size: 49531
2084
+ timestamp: 1733408570063
2085
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
2086
+ noarch: python
2087
+ sha256: c8e9c1c467b5f960b627d7adc1c65fece8e929a3de89967e91ef0f726422fd32
2088
+ md5: b6a408c64b78ec7b779a3e5c7a902433
2089
+ depends:
2090
+ - typing_extensions 4.12.2 pyha770c72_1
2091
+ license: PSF-2.0
2092
+ license_family: PSF
2093
+ purls: []
2094
+ size: 10075
2095
+ timestamp: 1733188758872
2096
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
2097
+ sha256: 337be7af5af8b2817f115b3b68870208b30c31d3439bec07bfb2d8f4823e3568
2098
+ md5: d17f13df8b65464ca316cbc000a3cb64
2099
+ depends:
2100
+ - python >=3.9
2101
+ license: PSF-2.0
2102
+ license_family: PSF
2103
+ purls:
2104
+ - pkg:pypi/typing-extensions?source=compressed-mapping
2105
+ size: 39637
2106
+ timestamp: 1733188758212
2107
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
2108
+ sha256: 4fde5c3008bf5d2db82f2b50204464314cc3c91c1d953652f7bd01d9e52aefdf
2109
+ md5: 8ac3367aafb1cc0a068483c580af8015
2110
+ license: LicenseRef-Public-Domain
2111
+ purls: []
2112
+ size: 122354
2113
+ timestamp: 1728047496079
2114
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
2115
+ sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450
2116
+ md5: 6797b005cd0f439c4c5c9ac565783700
2117
+ constrains:
2118
+ - vs2015_runtime >=14.29.30037
2119
+ license: LicenseRef-MicrosoftWindowsSDK10
2120
+ purls: []
2121
+ size: 559710
2122
+ timestamp: 1728377334097
2123
+ - conda: https://conda.anaconda.org/conda-forge/win-64/unicodedata2-15.1.0-py310ha8f682b_1.conda
2124
+ sha256: 4d5e8d7e59cd916c19ef57d7623de99eb3d0e5122a4023793e7cea209717a04e
2125
+ md5: c79b8d93f7cf51200011a9eede124b6e
2126
+ depends:
2127
+ - python >=3.10,<3.11.0a0
2128
+ - python_abi 3.10.* *_cp310
2129
+ - ucrt >=10.0.20348.0
2130
+ - vc >=14.2,<15
2131
+ - vc14_runtime >=14.29.30139
2132
+ license: Apache-2.0
2133
+ license_family: Apache
2134
+ purls:
2135
+ - pkg:pypi/unicodedata2?source=hash-mapping
2136
+ size: 365063
2137
+ timestamp: 1729705263886
2138
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
2139
+ sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e
2140
+ md5: 32674f8dbfb7b26410ed580dd3c10a29
2141
+ depends:
2142
+ - brotli-python >=1.0.9
2143
+ - h2 >=4,<5
2144
+ - pysocks >=1.5.6,<2.0,!=1.5.7
2145
+ - python >=3.9
2146
+ - zstandard >=0.18.0
2147
+ license: MIT
2148
+ license_family: MIT
2149
+ purls:
2150
+ - pkg:pypi/urllib3?source=hash-mapping
2151
+ size: 100102
2152
+ timestamp: 1734859520452
2153
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh5737063_0.conda
2154
+ sha256: 503f78c87c8fc9d468a32740e4b861041c8b43a65a5fea7736f0935c364cd1c1
2155
+ md5: 113eb04f96cc55d4b70a2eb554091580
2156
+ depends:
2157
+ - __win
2158
+ - click >=7.0
2159
+ - h11 >=0.8
2160
+ - python >=3.9
2161
+ - typing_extensions >=4.0
2162
+ license: BSD-3-Clause
2163
+ license_family: BSD
2164
+ purls:
2165
+ - pkg:pypi/uvicorn?source=hash-mapping
2166
+ size: 49007
2167
+ timestamp: 1734293353529
2168
+ - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h5737063_0.conda
2169
+ sha256: 7474930bfa022f3ae71c86530d9ee5335a59820245966f6fda1b6e3a6e0b0925
2170
+ md5: 27deaf97ae413a85a71dbf3afe250128
2171
+ depends:
2172
+ - __win
2173
+ - colorama >=0.4
2174
+ - httptools >=0.6.3
2175
+ - python-dotenv >=0.13
2176
+ - pyyaml >=5.1
2177
+ - uvicorn 0.34.0 pyh5737063_0
2178
+ - watchfiles >=0.13
2179
+ - websockets >=10.4
2180
+ license: BSD-3-Clause
2181
+ license_family: BSD
2182
+ purls: []
2183
+ size: 7712
2184
+ timestamp: 1734293357610
2185
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_23.conda
2186
+ sha256: 986ddaf8feec2904eac9535a7ddb7acda1a1dfb9482088fdb8129f1595181663
2187
+ md5: 7c10ec3158d1eb4ddff7007c9101adb0
2188
+ depends:
2189
+ - vc14_runtime >=14.38.33135
2190
+ track_features:
2191
+ - vc14
2192
+ license: BSD-3-Clause
2193
+ license_family: BSD
2194
+ purls: []
2195
+ size: 17479
2196
+ timestamp: 1731710827215
2197
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34433-he29a5d6_23.conda
2198
+ sha256: c483b090c4251a260aba6ff3e83a307bcfb5fb24ad7ced872ab5d02971bd3a49
2199
+ md5: 32b37d0cfa80da34548501cdc913a832
2200
+ depends:
2201
+ - ucrt >=10.0.20348.0
2202
+ constrains:
2203
+ - vs2015_runtime 14.42.34433.* *_23
2204
+ license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime
2205
+ license_family: Proprietary
2206
+ purls: []
2207
+ size: 754247
2208
+ timestamp: 1731710681163
2209
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.42.34433-hdffcdeb_23.conda
2210
+ sha256: 568ce8151eaae256f1cef752fc78651ad7a86ff05153cc7a4740b52ae6536118
2211
+ md5: 5c176975ca2b8366abad3c97b3cd1e83
2212
+ depends:
2213
+ - vc14_runtime >=14.42.34433
2214
+ license: BSD-3-Clause
2215
+ license_family: BSD
2216
+ purls: []
2217
+ size: 17572
2218
+ timestamp: 1731710685291
2219
+ - conda: https://conda.anaconda.org/conda-forge/win-64/watchfiles-1.0.3-py310hc226416_0.conda
2220
+ sha256: 83c0ed28e16aa75a442634c444be618e3375c8e4d645220dafa401a04d93392b
2221
+ md5: b2014c86575c274f406e110a5c1f040d
2222
+ depends:
2223
+ - anyio >=3.0.0
2224
+ - python >=3.10,<3.11.0a0
2225
+ - python_abi 3.10.* *_cp310
2226
+ - ucrt >=10.0.20348.0
2227
+ - vc >=14.2,<15
2228
+ - vc14_runtime >=14.29.30139
2229
+ license: MIT
2230
+ license_family: MIT
2231
+ purls:
2232
+ - pkg:pypi/watchfiles?source=hash-mapping
2233
+ size: 294207
2234
+ timestamp: 1733999205584
2235
+ - conda: https://conda.anaconda.org/conda-forge/win-64/websockets-12.0-py310h8d17308_0.conda
2236
+ sha256: 289cd2c31b120e7a92234dc8b974afc9bfb7defc3bb7fdeaa6cef4bb049fc678
2237
+ md5: deeaffde8a9eb39babee835eff6c32b8
2238
+ depends:
2239
+ - python >=3.10,<3.11.0a0
2240
+ - python_abi 3.10.* *_cp310
2241
+ - ucrt >=10.0.20348.0
2242
+ - vc >=14.2,<15
2243
+ - vc14_runtime >=14.29.30139
2244
+ license: BSD-3-Clause
2245
+ license_family: BSD
2246
+ purls:
2247
+ - pkg:pypi/websockets?source=hash-mapping
2248
+ size: 161802
2249
+ timestamp: 1697915120385
2250
+ - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda
2251
+ sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f
2252
+ md5: 46e441ba871f524e2b067929da3051c2
2253
+ depends:
2254
+ - __win
2255
+ - python >=3.9
2256
+ license: LicenseRef-Public-Domain
2257
+ purls:
2258
+ - pkg:pypi/win-inet-pton?source=hash-mapping
2259
+ size: 9555
2260
+ timestamp: 1733130678956
2261
+ - conda: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2
2262
+ sha256: 97166b318f8c68ffe4d50b2f4bd36e415219eeaef233e7d41c54244dc6108249
2263
+ md5: 19e39905184459760ccb8cf5c75f148b
2264
+ depends:
2265
+ - vc >=14.1,<15
2266
+ - vs2015_runtime >=14.16.27033
2267
+ license: GPL-2.0-or-later
2268
+ license_family: GPL
2269
+ purls: []
2270
+ size: 1041889
2271
+ timestamp: 1660323726084
2272
+ - conda: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2
2273
+ sha256: 02b9874049112f2b7335c9a3e880ac05d99a08d9a98160c5a98898b2b3ac42b2
2274
+ md5: ca7129a334198f08347fb19ac98a2de9
2275
+ depends:
2276
+ - vc >=14.1,<15
2277
+ - vs2015_runtime >=14.16.27033
2278
+ license: GPL-2.0-or-later
2279
+ license_family: GPL
2280
+ purls: []
2281
+ size: 5517425
2282
+ timestamp: 1646611941216
2283
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda
2284
+ sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634
2285
+ md5: 2ffbfae4548098297c033228256eb96e
2286
+ depends:
2287
+ - libgcc >=13
2288
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
2289
+ - ucrt >=10.0.20348.0
2290
+ license: MIT
2291
+ license_family: MIT
2292
+ purls: []
2293
+ size: 108013
2294
+ timestamp: 1734229474049
2295
+ - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda
2296
+ sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c
2297
+ md5: 8393c0f7e7870b4eb45553326f81f0ff
2298
+ depends:
2299
+ - libgcc >=13
2300
+ - libwinpthread >=12.0.0.r4.gg4f2fc60ca
2301
+ - ucrt >=10.0.20348.0
2302
+ license: MIT
2303
+ license_family: MIT
2304
+ purls: []
2305
+ size: 69920
2306
+ timestamp: 1727795651979
2307
+ - conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2
2308
+ sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5
2309
+ md5: adbfb9f45d1004a26763652246a33764
2310
+ depends:
2311
+ - vc >=14.1,<15.0a0
2312
+ - vs2015_runtime >=14.16.27012
2313
+ license: MIT
2314
+ license_family: MIT
2315
+ purls: []
2316
+ size: 63274
2317
+ timestamp: 1641347623319
2318
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310he5e10e1_1.conda
2319
+ sha256: 4e8aff4d0d42024e9f70783e51666186a681384d59fdd03fafda4b28f1fd540e
2320
+ md5: 2a879227ccc1a10a2caddf12607ffaeb
2321
+ depends:
2322
+ - cffi >=1.11
2323
+ - python >=3.10,<3.11.0a0
2324
+ - python_abi 3.10.* *_cp310
2325
+ - ucrt >=10.0.20348.0
2326
+ - vc >=14.2,<15
2327
+ - vc14_runtime >=14.29.30139
2328
+ - zstd >=1.5.6,<1.5.7.0a0
2329
+ - zstd >=1.5.6,<1.6.0a0
2330
+ license: BSD-3-Clause
2331
+ license_family: BSD
2332
+ purls:
2333
+ - pkg:pypi/zstandard?source=hash-mapping
2334
+ size: 311278
2335
+ timestamp: 1725306039901
2336
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda
2337
+ sha256: 768e30dc513568491818fb068ee867c57c514b553915536da09e5d10b4ebf3c3
2338
+ md5: 9a17230f95733c04dc40a2b1e5491d74
2339
+ depends:
2340
+ - libzlib >=1.2.13,<2.0.0a0
2341
+ - ucrt >=10.0.20348.0
2342
+ - vc >=14.2,<15
2343
+ - vc14_runtime >=14.29.30139
2344
+ license: BSD-3-Clause
2345
+ license_family: BSD
2346
+ purls: []
2347
+ size: 349143
2348
+ timestamp: 1714723445995
pyproject.toml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ authors = [{name = "T145", email = "[email protected]"}]
3
+ description = "Add a short description here"
4
+ name = "ChatDemo"
5
+ requires-python = "< 3.11"
6
+ version = "1.0.0"
7
+ dependencies = ["llama-cpp-python>=0.3.5,<0.4"]
8
+
9
+ [build-system]
10
+ build-backend = "hatchling.build"
11
+ requires = ["hatchling"]
12
+
13
+ [tool.pixi.project]
14
+ channels = ["conda-forge", "huggingface"]
15
+ platforms = ["win-64"]
16
+
17
+ [tool.pixi.pypi-dependencies]
18
+ chatdemo = { path = ".", editable = true }
19
+
20
+ [tool.pixi.tasks]
21
+
22
+ [tool.pixi.dependencies]
23
+ gradio = "==5.0.1"
24
+ huggingface_hub = "==0.25.2"