langfun 0.1.1.dev20240826__py3-none-any.whl → 0.1.1.dev202408282153__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- langfun/core/concurrent.py +148 -21
- langfun/core/concurrent_test.py +58 -8
- langfun/core/eval/base.py +8 -8
- langfun/core/eval/base_test.py +1 -1
- langfun/core/langfunc.py +3 -0
- langfun/core/langfunc_test.py +6 -3
- langfun/core/language_model.py +10 -0
- langfun/core/llms/cache/base.py +21 -2
- langfun/core/llms/cache/in_memory.py +7 -0
- langfun/core/llms/cache/in_memory_test.py +45 -0
- langfun/core/llms/google_genai.py +40 -13
- langfun/core/llms/openai.py +34 -17
- langfun/core/llms/vertexai.py +30 -9
- langfun/core/message.py +10 -0
- langfun/core/message_test.py +14 -0
- langfun/core/modalities/image.py +17 -5
- langfun/core/modalities/mime.py +13 -4
- langfun/core/modalities/ms_office.py +17 -8
- langfun/core/modality.py +12 -0
- langfun/core/modality_test.py +1 -0
- langfun/core/structured/mapping.py +6 -0
- langfun/core/structured/prompting_test.py +12 -8
- langfun/core/text_formatting.py +7 -1
- langfun/core/text_formatting_test.py +18 -0
- {langfun-0.1.1.dev20240826.dist-info → langfun-0.1.1.dev202408282153.dist-info}/METADATA +78 -14
- {langfun-0.1.1.dev20240826.dist-info → langfun-0.1.1.dev202408282153.dist-info}/RECORD +29 -29
- {langfun-0.1.1.dev20240826.dist-info → langfun-0.1.1.dev202408282153.dist-info}/WHEEL +1 -1
- {langfun-0.1.1.dev20240826.dist-info → langfun-0.1.1.dev202408282153.dist-info}/LICENSE +0 -0
- {langfun-0.1.1.dev20240826.dist-info → langfun-0.1.1.dev202408282153.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: langfun
|
3
|
-
Version: 0.1.1.
|
3
|
+
Version: 0.1.1.dev202408282153
|
4
4
|
Summary: Langfun: Language as Functions.
|
5
5
|
Home-page: https://github.com/google/langfun
|
6
6
|
Author: Langfun Authors
|
@@ -21,19 +21,54 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
License-File: LICENSE
|
24
|
-
Requires-Dist:
|
25
|
-
Requires-Dist: google-generativeai>=0.3.2
|
24
|
+
Requires-Dist: pyglove>=0.4.5.dev20240824
|
26
25
|
Requires-Dist: jinja2>=3.1.2
|
27
|
-
Requires-Dist: openai==0.27.2
|
28
|
-
Requires-Dist: openpyxl>=3.1.0
|
29
|
-
Requires-Dist: pandas>=2.0.3
|
30
|
-
Requires-Dist: pyglove>=0.4.5.dev20240423
|
31
|
-
Requires-Dist: python-docx>=0.8.11
|
32
|
-
Requires-Dist: python-magic>=0.4.27
|
33
26
|
Requires-Dist: requests>=2.31.0
|
34
|
-
|
35
|
-
Requires-Dist:
|
36
|
-
Requires-Dist:
|
27
|
+
Provides-Extra: all
|
28
|
+
Requires-Dist: pyglove>=0.4.5.dev20240824; extra == "all"
|
29
|
+
Requires-Dist: jinja2>=3.1.2; extra == "all"
|
30
|
+
Requires-Dist: requests>=2.31.0; extra == "all"
|
31
|
+
Requires-Dist: termcolor==1.1.0; extra == "all"
|
32
|
+
Requires-Dist: tqdm>=4.64.1; extra == "all"
|
33
|
+
Requires-Dist: google-cloud-aiplatform>=1.5.0; extra == "all"
|
34
|
+
Requires-Dist: google-generativeai>=0.3.2; extra == "all"
|
35
|
+
Requires-Dist: openai>=0.27.2; extra == "all"
|
36
|
+
Requires-Dist: python-magic>=0.4.27; extra == "all"
|
37
|
+
Requires-Dist: python-docx>=0.8.11; extra == "all"
|
38
|
+
Requires-Dist: pillow>=10.0.0; extra == "all"
|
39
|
+
Requires-Dist: openpyxl>=3.1.0; extra == "all"
|
40
|
+
Requires-Dist: pandas>=2.0.3; extra == "all"
|
41
|
+
Provides-Extra: llm
|
42
|
+
Requires-Dist: google-cloud-aiplatform>=1.5.0; extra == "llm"
|
43
|
+
Requires-Dist: google-generativeai>=0.3.2; extra == "llm"
|
44
|
+
Requires-Dist: openai>=0.27.2; extra == "llm"
|
45
|
+
Provides-Extra: llm-google
|
46
|
+
Requires-Dist: google-cloud-aiplatform>=1.5.0; extra == "llm-google"
|
47
|
+
Requires-Dist: google-generativeai>=0.3.2; extra == "llm-google"
|
48
|
+
Provides-Extra: llm-google-genai
|
49
|
+
Requires-Dist: google-generativeai>=0.3.2; extra == "llm-google-genai"
|
50
|
+
Provides-Extra: llm-google-vertex
|
51
|
+
Requires-Dist: google-cloud-aiplatform>=1.5.0; extra == "llm-google-vertex"
|
52
|
+
Provides-Extra: llm-openai
|
53
|
+
Requires-Dist: openai>=0.27.2; extra == "llm-openai"
|
54
|
+
Provides-Extra: mime
|
55
|
+
Requires-Dist: python-magic>=0.4.27; extra == "mime"
|
56
|
+
Requires-Dist: python-docx>=0.8.11; extra == "mime"
|
57
|
+
Requires-Dist: pillow>=10.0.0; extra == "mime"
|
58
|
+
Requires-Dist: openpyxl>=3.1.0; extra == "mime"
|
59
|
+
Requires-Dist: pandas>=2.0.3; extra == "mime"
|
60
|
+
Provides-Extra: mime-auto
|
61
|
+
Requires-Dist: python-magic>=0.4.27; extra == "mime-auto"
|
62
|
+
Provides-Extra: mime-docx
|
63
|
+
Requires-Dist: python-docx>=0.8.11; extra == "mime-docx"
|
64
|
+
Provides-Extra: mime-pil
|
65
|
+
Requires-Dist: pillow>=10.0.0; extra == "mime-pil"
|
66
|
+
Provides-Extra: mime-xlsx
|
67
|
+
Requires-Dist: openpyxl>=3.1.0; extra == "mime-xlsx"
|
68
|
+
Requires-Dist: pandas>=2.0.3; extra == "mime-xlsx"
|
69
|
+
Provides-Extra: ui
|
70
|
+
Requires-Dist: termcolor==1.1.0; extra == "ui"
|
71
|
+
Requires-Dist: tqdm>=4.64.1; extra == "ui"
|
37
72
|
|
38
73
|
<div align="center">
|
39
74
|
<img src="https://raw.githubusercontent.com/google/langfun/main/docs/_static/logo.svg" width="520px" alt="logo"></img>
|
@@ -152,16 +187,45 @@ See [Langfun 101](https://colab.research.google.com/github/google/langfun/blob/m
|
|
152
187
|
|
153
188
|
## Install
|
154
189
|
|
190
|
+
Langfun offers a range of features through [Extras](https://packaging.python.org/en/latest/tutorials/installing-packages/#installing-extras), allowing users to install only what they need. The minimal installation of Langfun requires only [PyGlove](https://github.com/google/pyglove), [Jinja2](https://github.com/pallets/jinja/), and [requests](https://github.com/psf/requests). To install Langfun with its minimal dependencies, use:
|
191
|
+
|
155
192
|
```
|
156
193
|
pip install langfun
|
157
194
|
```
|
158
195
|
|
159
|
-
|
196
|
+
For a complete installation with all dependencies, use:
|
160
197
|
|
161
198
|
```
|
162
|
-
pip install langfun
|
199
|
+
pip install langfun[all]
|
163
200
|
```
|
164
201
|
|
202
|
+
To install a nightly build, include the `--pre` flag, like this:
|
203
|
+
|
204
|
+
```
|
205
|
+
pip install langfun[all] --pre
|
206
|
+
```
|
165
207
|
|
208
|
+
If you want to customize your installation, you can select specific features using package names like `langfun[X1, X2, ..., Xn]`, where `Xi` corresponds to a tag from the list below:
|
209
|
+
|
210
|
+
| Tag | Description |
|
211
|
+
| ------------------- | ---------------------------------------- |
|
212
|
+
| all | All Langfun features. |
|
213
|
+
| llm | All supported LLMs. |
|
214
|
+
| llm-google | All supported Google-powered LLMs. |
|
215
|
+
| llm-google-vertexai | LLMs powered by Google Cloud VertexAI |
|
216
|
+
| llm-google-genai | LLMs powered by Google Generative AI API |
|
217
|
+
| llm-openai | LLMs powered by OpenAI |
|
218
|
+
| mime | All MIME supports. |
|
219
|
+
| mime-auto | Automatic MIME type detection. |
|
220
|
+
| mime-docx | DocX format support. |
|
221
|
+
| mime-pil | Image support for PIL. |
|
222
|
+
| mime-xlsx | XlsX format support. |
|
223
|
+
| ui | UI enhancements |
|
224
|
+
|
225
|
+
|
226
|
+
For example, to install a nightly build that includes Google-powered LLMs, full modality support, and UI enhancements, use:
|
227
|
+
```
|
228
|
+
pip install langfun[llm-google,mime,ui] --pre
|
229
|
+
```
|
166
230
|
|
167
231
|
*Disclaimer: this is not an officially supported Google product.*
|
@@ -2,21 +2,21 @@ langfun/__init__.py,sha256=ZqERg4fvvtFwr5L41Lfev9FSuCBm8PbQrZmcKvvloxE,2274
|
|
2
2
|
langfun/core/__init__.py,sha256=r86kuy-BiJIveqnXx5OklUUXtMG3q79nWRBum6zFOCQ,4835
|
3
3
|
langfun/core/component.py,sha256=Icyoj9ICoJoK2r2PHbrFXbxnseOr9QZZOvKWklLWNo8,10276
|
4
4
|
langfun/core/component_test.py,sha256=q15Xn51cVTu2RKxZ9U5VQgT3bm6RQ4638bKhWBtvW5o,8220
|
5
|
-
langfun/core/concurrent.py,sha256=
|
6
|
-
langfun/core/concurrent_test.py,sha256=
|
5
|
+
langfun/core/concurrent.py,sha256=qZteOkA7jzLt7a5AVmNqDc5ZEvj_hwiLECqGMVYdzSU,27756
|
6
|
+
langfun/core/concurrent_test.py,sha256=ULVrE6JGzsClRBLHAlqLF1A2mfxMO2X0245qYTYQ76o,16943
|
7
7
|
langfun/core/console.py,sha256=bk5rNPNm9rMGW5YT2HixxU04p2umnoabn5SDz6Dqe88,2317
|
8
8
|
langfun/core/console_test.py,sha256=5SYJdxpJGLgdSSQqqMPoA1X6jpsLD8rgcyk-EgI65oE,1077
|
9
|
-
langfun/core/langfunc.py,sha256=
|
10
|
-
langfun/core/langfunc_test.py,sha256=
|
11
|
-
langfun/core/language_model.py,sha256=
|
9
|
+
langfun/core/langfunc.py,sha256=G50YgoVZ0y1GFw2ev41MlOqr6qa8YakbvNC0h_E0PiA,11140
|
10
|
+
langfun/core/langfunc_test.py,sha256=ZLlj6ysNIWUlm0jcq6PbNUwdJ2XstW5QQT0L2s5GlGY,8753
|
11
|
+
langfun/core/language_model.py,sha256=o1MPDdiZ7eRUhcCjxLMT6IYYXge6nM7elvCWQ-NANaU,26286
|
12
12
|
langfun/core/language_model_test.py,sha256=ebJ1vnaxKSKvlwi6v07yHjn91xMiDw2bQ9DBnyVorYw,23303
|
13
13
|
langfun/core/logging.py,sha256=oDSeqGIQogZJ6xuPTcr9mkmLC2YnLP67UHtTdWbbiVY,4250
|
14
14
|
langfun/core/logging_test.py,sha256=poSsNGKi6G9LWOcWnTY0BQjj0BtaQknH-NK6FcQrVT4,2152
|
15
15
|
langfun/core/memory.py,sha256=f-asN1F7Vehgdn_fK84v73GrEUOxRtaW934keutTKjk,2416
|
16
|
-
langfun/core/message.py,sha256=
|
17
|
-
langfun/core/message_test.py,sha256=
|
18
|
-
langfun/core/modality.py,sha256=
|
19
|
-
langfun/core/modality_test.py,sha256=
|
16
|
+
langfun/core/message.py,sha256=7UOxNMA1Le0ZGkleryqwXcWojZ-l_hku5Sc58BsIOGw,18586
|
17
|
+
langfun/core/message_test.py,sha256=2o4WvE-WL67OsVY-O5g__67OIJ73vvg6MuojSc2uVRs,12504
|
18
|
+
langfun/core/modality.py,sha256=g9wGx347oVofAJlMu_CpzTMIyTT9DJW8NfO4E-d-oNM,3879
|
19
|
+
langfun/core/modality_test.py,sha256=7SwhixFME2Q1sIXRgJx97EZFiIyC31A9NVr6_nDtFv4,2441
|
20
20
|
langfun/core/natural_language.py,sha256=3ynSnaYQnjE60LIPK5fyMgdIjubnPYZwzGq4rWPeloE,1177
|
21
21
|
langfun/core/natural_language_test.py,sha256=LHGU_1ytbkGuSZQFIFP7vP3dBlcY4-A12fT6dbjUA0E,1424
|
22
22
|
langfun/core/repr_utils.py,sha256=Y6ccoQUMpRxDv_jUy2QtnP9cdz3QBjJtTIgxGIU-kfM,5537
|
@@ -27,8 +27,8 @@ langfun/core/subscription.py,sha256=euawEuSZP-BHydaT-AQpfYFL0m5pWPGcW0upFhrojqc,
|
|
27
27
|
langfun/core/subscription_test.py,sha256=Y4ZdbZEwm83YNZBxHff0QR4QUa4rdaNXA3_jfIcArBo,8717
|
28
28
|
langfun/core/template.py,sha256=UhNNGUDJ4StUhPBKzHmjym36khxHOGWGr9MDxBwgxQA,22284
|
29
29
|
langfun/core/template_test.py,sha256=cb005qM_3dvJikaPDB3rirfIrMAIIVRpoiXGREGJ43o,15468
|
30
|
-
langfun/core/text_formatting.py,sha256=
|
31
|
-
langfun/core/text_formatting_test.py,sha256=
|
30
|
+
langfun/core/text_formatting.py,sha256=d7t9vaY6aCn1dkfkikpNYnBy5E_i93vHbfyDWFclGZU,5284
|
31
|
+
langfun/core/text_formatting_test.py,sha256=ck0Xzdd4YF4CtCUj7VE0GybfbAyKQ8p3xkM1FBGrqIk,2096
|
32
32
|
langfun/core/coding/__init__.py,sha256=5utju_fwEsImaiftx4oXKl9FAM8p281k8-Esdh_-m1w,835
|
33
33
|
langfun/core/coding/python/__init__.py,sha256=MJ-vubliz-ebrZH3OBRKBwMi0S9-FrhGCp8YQLR6_I4,1776
|
34
34
|
langfun/core/coding/python/correction.py,sha256=a2aFUt9ocbXTCR6Z6OGNjQZDI1LfU0PBkSe7hJB8dEM,6589
|
@@ -44,8 +44,8 @@ langfun/core/coding/python/parsing_test.py,sha256=9vAWF484kWIm6JZq8NFiMgKUDhXV-d
|
|
44
44
|
langfun/core/coding/python/permissions.py,sha256=1QWGHvzL8MM0Ok_auQ9tURqZHtdOfJaDpBzZ29GUE-c,2544
|
45
45
|
langfun/core/coding/python/permissions_test.py,sha256=w5EDb8QxpxgJyZkojyzVWQvDfg366zn99-g__6TbPQ0,2699
|
46
46
|
langfun/core/eval/__init__.py,sha256=Ogdr9OtTywhhLPHi3AZzOD2mXX2oyaHWflrSTMm96uA,1899
|
47
|
-
langfun/core/eval/base.py,sha256=
|
48
|
-
langfun/core/eval/base_test.py,sha256=
|
47
|
+
langfun/core/eval/base.py,sha256=YU_R9pKITKWyWa5-dSY8Q5O9pK8xioWX1ZdqYVOZcK8,74751
|
48
|
+
langfun/core/eval/base_test.py,sha256=VEraWaRybSxOCOcZrZouNkiroDEPR6uyFBJoAz-1pQg,26930
|
49
49
|
langfun/core/eval/matching.py,sha256=9GX8HfO9jKxgNLAivgy5K88Xhoh6Z7Pptq65pe7vht8,9762
|
50
50
|
langfun/core/eval/matching_test.py,sha256=f7iVyXH5KGJBWt4Wp14Bt9J3X59A6Ayfog9MbuFvPew,5532
|
51
51
|
langfun/core/eval/patching.py,sha256=R0s2eAd1m97exQt06dmUL0V_MBG0W2Hxg7fhNB7cXW0,3866
|
@@ -57,33 +57,33 @@ langfun/core/llms/anthropic.py,sha256=Gon3fOi31RhZFgNd0ijyTnKnUdp9hrWrCoSXyO4UaL
|
|
57
57
|
langfun/core/llms/anthropic_test.py,sha256=T-swuMkfnlgs8Fpif4rtXs579exGk0TsbLMirXDZCkg,5533
|
58
58
|
langfun/core/llms/fake.py,sha256=gCHBYBLvBCsC78HI1hpoqXCS-p1FMTgY1P1qh_sGBPk,3070
|
59
59
|
langfun/core/llms/fake_test.py,sha256=sIl_Mg7nFVjaN7AJhYCpA_qzDJpSnJzkazepGXpfQQg,7338
|
60
|
-
langfun/core/llms/google_genai.py,sha256=
|
60
|
+
langfun/core/llms/google_genai.py,sha256=OYrlKIEY57CFWYwndvEdhXLwffNvDwKXyy9ULZTNeYI,10885
|
61
61
|
langfun/core/llms/google_genai_test.py,sha256=iTISk3tJ4-3gjWmzcKQhEbH3ke4AkEiCu8rAGtB7SvU,7535
|
62
62
|
langfun/core/llms/groq.py,sha256=pqtyOZ_1_OJMOg8xATWT_B_SVbuT9nMRf4VkH9GzW8g,6308
|
63
63
|
langfun/core/llms/groq_test.py,sha256=GYF_Qtq5S1H1TrKH38t6_lkdroqT7v-joYLDKnmS9e0,5274
|
64
64
|
langfun/core/llms/llama_cpp.py,sha256=9tXQntSCDtjTF3bnyJrAPCr4N6wycy5nXYvp9uduygE,2843
|
65
65
|
langfun/core/llms/llama_cpp_test.py,sha256=MWO_qaOeKjRniGjcaWPDScd7HPaIJemqUZoslrt4FPs,1806
|
66
|
-
langfun/core/llms/openai.py,sha256=
|
66
|
+
langfun/core/llms/openai.py,sha256=aZ5RgRBomVhBtzJtGYu9EM-qm07WEDcJr127VGpc_Sg,16161
|
67
67
|
langfun/core/llms/openai_test.py,sha256=02KeysRppXcAwA4SBUow8hKolFiEU9_lTSdlVHZletM,17518
|
68
68
|
langfun/core/llms/rest.py,sha256=laopuq-zD8V-3Y6eFDngftHEbE66VlUkCD2-rvvRaLU,3388
|
69
69
|
langfun/core/llms/rest_test.py,sha256=NZ3Nf0XQVpT9kLP5cBVo_yBHLI7vWTYhWQxYEJVMGs4,3472
|
70
|
-
langfun/core/llms/vertexai.py,sha256=
|
70
|
+
langfun/core/llms/vertexai.py,sha256=mEQVwO3Kf3rGRmsI-qKrV6vg0hYy6OH1lEVOM81cb3U,15134
|
71
71
|
langfun/core/llms/vertexai_test.py,sha256=EPR-mB2hNUpvpf7E8m_k5bh04epdQTVUuYU6hPgZyu8,10321
|
72
72
|
langfun/core/llms/cache/__init__.py,sha256=QAo3InUMDM_YpteNnVCSejI4zOsnjSMWKJKzkb3VY64,993
|
73
|
-
langfun/core/llms/cache/base.py,sha256=
|
74
|
-
langfun/core/llms/cache/in_memory.py,sha256=
|
75
|
-
langfun/core/llms/cache/in_memory_test.py,sha256=
|
73
|
+
langfun/core/llms/cache/base.py,sha256=rt3zwmyw0y9jsSGW-ZbV1vAfLxQ7_3AVk0l2EySlse4,3918
|
74
|
+
langfun/core/llms/cache/in_memory.py,sha256=l6b-iU9OTfTRo9Zmg4VrQIuArs4cCJDOpXiEpvNocjo,5004
|
75
|
+
langfun/core/llms/cache/in_memory_test.py,sha256=ic6Z_crpuYdkUVPBbB9DomOddRxQdf57a2L_Sv5nHtM,10217
|
76
76
|
langfun/core/memories/__init__.py,sha256=HpghfZ-w1NQqzJXBx8Lz0daRhB2rcy2r9Xm491SBhC4,773
|
77
77
|
langfun/core/memories/conversation_history.py,sha256=c9amD8hCxGFiZuVAzkP0dOMWSp8L90uvwkOejjuBqO0,1835
|
78
78
|
langfun/core/memories/conversation_history_test.py,sha256=AaW8aNoFjxNusanwJDV0r3384Mg0eAweGmPx5DIkM0Y,2052
|
79
79
|
langfun/core/modalities/__init__.py,sha256=F8P72IwFiTpEseTR2tYEJyQMlDW7fd9csvGJquLKJNg,1269
|
80
80
|
langfun/core/modalities/audio.py,sha256=Qxo7bYjLKQ1gVJVomr9RqR2SvxY826QgXhTzzk437Sk,952
|
81
81
|
langfun/core/modalities/audio_test.py,sha256=gWCB9h3FyrdGqro3ajBXqkw0lU0W1sBjOOq6wZbl7Fg,2027
|
82
|
-
langfun/core/modalities/image.py,sha256=
|
82
|
+
langfun/core/modalities/image.py,sha256=DyVV17Ii-vJmwA7Mo23B40m4VxZg_WXc0KPKN8Q4Mlc,1756
|
83
83
|
langfun/core/modalities/image_test.py,sha256=A0aYblxpnKABDgm2OVPxF8iRq4qFVanM9TPcaewkAgA,3774
|
84
|
-
langfun/core/modalities/mime.py,sha256
|
84
|
+
langfun/core/modalities/mime.py,sha256=-BEIAcIGzPdPgwUZ2yqFj6NGsBYGCiqeNqIWVeaNnTI,6164
|
85
85
|
langfun/core/modalities/mime_test.py,sha256=kmRiPP-3Py02NnKPu0oPexSIJ-MXaaE2UYY82ga0TV8,2913
|
86
|
-
langfun/core/modalities/ms_office.py,sha256=
|
86
|
+
langfun/core/modalities/ms_office.py,sha256=_dUgUCfK-hsEMOjgA_q3hUgKC4n8iAufKy7Sh2Gs1Jo,3780
|
87
87
|
langfun/core/modalities/ms_office_test.py,sha256=d_NZ0QU23NydenYZgNj6YxgO5ZYzjg-HCbglsVJGp04,87866
|
88
88
|
langfun/core/modalities/pdf.py,sha256=mfaeCbUA4JslFVTARiJh8hW7imvL4tLVw9gUhO5bAZA,727
|
89
89
|
langfun/core/modalities/pdf_test.py,sha256=KE40zJD3Whe6ty2OULkp1J8jwLmB4ZjGXlGekluTP48,1952
|
@@ -96,12 +96,12 @@ langfun/core/structured/description.py,sha256=SXW4MJvshFjbR-0gw6rE21o6WXq12UlRXa
|
|
96
96
|
langfun/core/structured/description_test.py,sha256=UtZGjSFUaQ6130t1E5tcL7ODu0xIefkapb53TbnqsK8,7362
|
97
97
|
langfun/core/structured/function_generation.py,sha256=pFgS3vcRAWiuFBol2x5Eeip3XqoudONsOpeJpWyjT3s,7479
|
98
98
|
langfun/core/structured/function_generation_test.py,sha256=ZJI-aaGgWWszn92u7h5IZ9Pl70N2DgAGGJrIxPzsvwg,10065
|
99
|
-
langfun/core/structured/mapping.py,sha256=
|
99
|
+
langfun/core/structured/mapping.py,sha256=dKOCvIA_kCQ88KoCnP5k0iOe9xRt8WLC2kbT6qPqrd8,12016
|
100
100
|
langfun/core/structured/mapping_test.py,sha256=zQoVx3kAD5oSm_OJAQA6q41NXLLyn8qs6CIVJgAoP_w,4489
|
101
101
|
langfun/core/structured/parsing.py,sha256=keoVqEfzAbdULh6GawWFsTQzU91MzJXYFZjXGXLaD8g,11492
|
102
102
|
langfun/core/structured/parsing_test.py,sha256=34wDrXaQ-EYhJLfDL8mX9K53oQMSzh5pVYdKjnESmK8,20895
|
103
103
|
langfun/core/structured/prompting.py,sha256=_U6Z65AwXvVvfaQFCY9GawB_QV9S3u7P7BOU2URABmw,8873
|
104
|
-
langfun/core/structured/prompting_test.py,sha256=
|
104
|
+
langfun/core/structured/prompting_test.py,sha256=SyyBMmw-gwnrnr1MrwkjZiQaMq85kc9MHoYwzCITa10,23266
|
105
105
|
langfun/core/structured/schema.py,sha256=oiT4P4Q9pG-QOnFzxETN2EQZqNln8nG4zAJHxcmeX9U,27729
|
106
106
|
langfun/core/structured/schema_generation.py,sha256=U3nRQsqmMZg_qIVDh2fiY3K4JLfsAL1LcKzIFP1iXFg,5316
|
107
107
|
langfun/core/structured/schema_generation_test.py,sha256=RM9s71kMNg2jTePwInkiW9fK1ACN37eyPeF8OII-0zw,2950
|
@@ -119,8 +119,8 @@ langfun/core/templates/demonstration.py,sha256=vCrgYubdZM5Umqcgp8NUVGXgr4P_c-fik
|
|
119
119
|
langfun/core/templates/demonstration_test.py,sha256=SafcDQ0WgI7pw05EmPI2S4v1t3ABKzup8jReCljHeK4,2162
|
120
120
|
langfun/core/templates/selfplay.py,sha256=yhgrJbiYwq47TgzThmHrDQTF4nDrTI09CWGhuQPNv-s,2273
|
121
121
|
langfun/core/templates/selfplay_test.py,sha256=rBW2Qr8yi-aWYwoTwRR-n1peKyMX9QXPZXURjLgoiRs,2264
|
122
|
-
langfun-0.1.1.
|
123
|
-
langfun-0.1.1.
|
124
|
-
langfun-0.1.1.
|
125
|
-
langfun-0.1.1.
|
126
|
-
langfun-0.1.1.
|
122
|
+
langfun-0.1.1.dev202408282153.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
123
|
+
langfun-0.1.1.dev202408282153.dist-info/METADATA,sha256=QF_FZsBIPmWG9chJNbkoDrgRq_jnT75KFLaXKN44dp8,8825
|
124
|
+
langfun-0.1.1.dev202408282153.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
125
|
+
langfun-0.1.1.dev202408282153.dist-info/top_level.txt,sha256=RhlEkHxs1qtzmmtWSwYoLVJAc1YrbPtxQ52uh8Z9VvY,8
|
126
|
+
langfun-0.1.1.dev202408282153.dist-info/RECORD,,
|
File without changes
|
{langfun-0.1.1.dev20240826.dist-info → langfun-0.1.1.dev202408282153.dist-info}/top_level.txt
RENAMED
File without changes
|