weave

Weave is a toolkit for developing AI-powered applications, built by Weights & Biases.

https://github.com/wandb/weave

Science Score: 36.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    1 of 79 committers (1.3%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (16.3%) to scientific vocabulary

Keywords from Contributors

transformer diffusion flux image-generation image2image image2video latent-diffusion-models qwen-image score-based-generative-modeling stable-diffusion
Last synced: 10 months ago · JSON representation

Repository

Weave is a toolkit for developing AI-powered applications, built by Weights & Biases.

Basic Info
  • Host: GitHub
  • Owner: wandb
  • License: apache-2.0
  • Language: Python
  • Default Branch: master
  • Homepage: https://wandb.me/weave
  • Size: 1.41 GB
Statistics
  • Stars: 974
  • Watchers: 41
  • Forks: 123
  • Open Issues: 310
  • Releases: 67
Created about 3 years ago · Last pushed 10 months ago
Metadata Files
Readme Contributing License Codeowners Security Agents

README.md

Weave by Weights & Biases

Open in Colab Stable Version Download Stats Github Checks codecov

Weave is a toolkit for developing Generative AI applications, built by Weights & Biases.


You can use Weave to:

  • Log and debug language model inputs, outputs, and traces
  • Build rigorous, apples-to-apples evaluations for language model use cases
  • Organize all the information generated across the LLM workflow, from experimentation to evaluations to production

Our goal is to bring rigor, best-practices, and composability to the inherently experimental process of developing Generative AI software, without introducing cognitive overhead.

Documentation

Our documentation site can be found here.

Prerequisites

Quick Start

  1. Install Weave: bash pip install weave

  2. Import and initialize: python import weave weave.init("my-project-name")

  3. Trace your functions: python @weave.op() def my_function(): # Your tracked code! pass

Usage

Tracing

You can trace any function using weave.op() - from api calls to OpenAI, Anthropic, Google AI Studio etc to generation calls from Hugging Face and other open source models to any other validation functions or data transformations in your code you'd like to keep track of.

Decorate all the functions you want to trace, this will generate a trace tree of the inputs and outputs of all your functions:

```python import weave weave.init("weave-example")

@weave.op() def sumnine(valueone: int): return value_one + 9

@weave.op() def multiplytwo(valuetwo: int): return value_two * 2

@weave.op() def main(): output = sumnine(3) finaloutput = multiplytwo(output) return finaloutput

main() ```

Fuller Example

```python import weave import json from openai import OpenAI

@weave.op() def extract_fruit(sentence: str) -> dict: client = OpenAI()

response = client.chat.completions.create(
model="gpt-3.5-turbo-1106",
messages=[
    {
        "role": "system",
        "content": "You will be provided with unstructured data, and your task is to parse it one JSON dictionary with fruit, color and flavor as keys."
    },
    {
        "role": "user",
        "content": sentence
    }
    ],
    temperature=0.7,
    response_format={ "type": "json_object" }
)
extracted = response.choices[0].message.content
return json.loads(extracted)

weave.init('intro-example')

sentence = "There are many fruits that were found on the recently discovered planet Goocrux. There are neoskizzles that grow there, which are purple and taste like candy."

extract_fruit(sentence) ```

Contributing

Interested in pulling back the hood or contributing? Awesome, before you dive in, here's what you need to know.

We're in the process of 🧹 cleaning up 🧹. This codebase contains a large amount code for the "Weave engine" and "Weave boards", which we've put on pause as we focus on Tracing and Evaluations.

The Weave Tracing code is mostly in: weave/trace and weave/trace_server.

The Weave Evaluations code is mostly in weave/flow.

Owner

  • Name: Weights & Biases
  • Login: wandb
  • Kind: organization
  • Location: San Francisco

Building the best tools for ML practitioners

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 4,308
  • Total Committers: 79
  • Avg Commits per committer: 54.532
  • Development Distribution Score (DDS): 0.801
Past Year
  • Commits: 2,247
  • Committers: 63
  • Avg Commits per committer: 35.667
  • Development Distribution Score (DDS): 0.767
Top Committers
Name Email Commits
Tim Sweeney t****m@w****m 859
Weave Build Bot w****e@w****m 823
Jamie Rasmussen 1****n 569
Shawn s****s@g****m 374
Danny Goldstein d****d@b****u 362
Andrew Truong i****g@g****m 255
Josiah Lee j****e@g****m 211
Griffin Tarpenning g****g@w****m 191
Connie Lee c****7@g****m 75
Leonardo Axel Setyanto l****s@g****m 44
Nick Penaranda n****a@w****m 38
Stacey Svetlichnaya 4****v 36
Chris Van Pelt v****t@w****m 35
Scott Condron S****t@w****m 32
Jason Zhao 1****7 29
Vish Rajiv 8****j 27
Justin Tulk j****k 26
J2-D2-3PO 1****O 21
Joyce Fang 1****g 21
Ben Sherman b****n@g****m 18
Marie Barr-Ramsey 1****y 18
domphan-wandb d****n@w****m 16
Martin Mark m****k@w****m 13
Soumik Rakshit 1****6@g****m 13
Thomas Capelle t****e@w****m 12
David Jackson 1****n 12
Adrian Swanberg a****g@w****m 11
Ishita Bindlish i****h@g****m 11
Jeff Rooks o****j@g****m 10
ericakdiaz 1****z 9
and 49 more...
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 10 months ago

All Time
  • Total issues: 170
  • Total pull requests: 6,723
  • Average time to close issues: about 1 month
  • Average time to close pull requests: 12 days
  • Total issue authors: 101
  • Total pull request authors: 126
  • Average comments per issue: 0.88
  • Average comments per pull request: 1.25
  • Merged pull requests: 4,387
  • Bot issues: 0
  • Bot pull requests: 84
Past Year
  • Issues: 115
  • Pull requests: 4,661
  • Average time to close issues: 10 days
  • Average time to close pull requests: 7 days
  • Issue authors: 68
  • Pull request authors: 96
  • Average comments per issue: 0.58
  • Average comments per pull request: 1.28
  • Merged pull requests: 2,936
  • Bot issues: 0
  • Bot pull requests: 75
Top Authors
Issue Authors
  • jamie-rasmussen (10)
  • ChuckJonas (8)
  • andrewtruong (8)
  • TeoZosa (6)
  • gtarpenning (5)
  • farzad528 (4)
  • danem (4)
  • madroidmaq (4)
  • tssweeney (4)
  • Heyitsquoracom (3)
  • willbakst (3)
  • chandlj (3)
  • SamMakesThings (3)
  • binarycrayon (3)
  • SauravMaheshkar (2)
Pull Request Authors
  • tssweeney (976)
  • jamie-rasmussen (957)
  • andrewtruong (950)
  • gtarpenning (794)
  • jwlee64 (475)
  • J2-D2-3PO (221)
  • bcsherma (181)
  • m-rgba (181)
  • shawnlewis (147)
  • chance-wnb (136)
  • nicholaspun-wandb (134)
  • dannygoldstein (124)
  • zbirenbaum (119)
  • connieelee (92)
  • soumik12345 (82)
Top Labels
Issue Labels
bug (3) enhancement (3) documentation (2) backlog (1)
Pull Request Labels
dependencies (75) python (57) javascript (18) codex (15) documentation (7) bug (7) backlog (2)

Packages

  • Total packages: 4
  • Total downloads:
    • pypi 310,811 last-month
    • npm 3,601 last-month
  • Total dependent packages: 3
    (may contain duplicates)
  • Total dependent repositories: 16
    (may contain duplicates)
  • Total versions: 168
  • Total maintainers: 10
  • Total advisories: 1
pypi.org: weave

A toolkit for building composable interactive data driven applications.

  • Documentation: https://docs.wandb.com/
  • License: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
  • Latest release: 0.52.6
    published 10 months ago
  • Versions: 110
  • Dependent Packages: 3
  • Dependent Repositories: 14
  • Downloads: 310,747 Last month
Rankings
Stargazers count: 3.2%
Dependent repos count: 3.9%
Dependent packages count: 4.8%
Average: 5.8%
Downloads: 7.6%
Forks count: 9.6%
Last synced: 10 months ago
npmjs.org: weave

AI development toolkit

  • Versions: 44
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 3,578 Last month
Rankings
Dependent repos count: 7.7%
Stargazers count: 14.6%
Forks count: 15.5%
Average: 22.7%
Downloads: 23.5%
Dependent packages count: 52.2%
Maintainers (3)
Last synced: 10 months ago
npmjs.org: @yawnxyz/weave

AI development toolkit

  • License: Apache-2.0
  • Latest release: 0.7.11
    published over 1 year ago
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 23 Last month
Rankings
Dependent repos count: 25.2%
Average: 30.9%
Dependent packages count: 36.5%
Maintainers (1)
Last synced: 10 months ago
pypi.org: andrew-test-weave

A toolkit for building composable interactive data driven applications.

  • Documentation: https://docs.wandb.com/
  • License: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
  • Latest release: 0.51.37
    published over 1 year ago
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 64 Last month
Rankings
Dependent packages count: 9.6%
Average: 31.9%
Dependent repos count: 54.2%
Maintainers (1)
Last synced: 10 months ago

Dependencies

.github/workflows/notify-wandb-core.yaml actions
  • peter-evans/repository-dispatch v2 composite
.github/workflows/test.yaml actions
  • actions/checkout v3 composite
  • actions/checkout v2 composite
  • actions/setup-node v1 composite
  • actions/upload-artifact v3 composite
  • docker/login-action v2 composite
  • us-central1-docker.pkg.dev/wandb-production/images/local-testcontainer master docker
.github/workflows/wandb-core-updated.yaml actions
  • actions/checkout v3 composite
.github/workflows/cla.yaml actions
  • contributor-assistant/github-action v2.3.0 composite
.github/workflows/pr.yaml actions
  • amannn/action-semantic-pull-request v4.2.0 composite
.github/workflows/release.yaml actions
  • actions/checkout v3 composite
  • actions/setup-node v1 composite
  • pypa/gh-action-pypi-publish release/v1 composite
weave-js/src/core/language/js/parser/js-grammar/Cargo.toml cargo
weave-js/eslint-plugin-wandb/package.json npm
  • jsx-ast-utils ^3.1.0
weave-js/package.json npm
  • @babel/core ^7.21.8 development
  • @babel/plugin-proposal-private-property-in-object ^7.21.11 development
  • @babel/preset-env ^7.20.2 development
  • @babel/preset-react ^7.16.7 development
  • @babel/preset-typescript ^7.21.5 development
  • @graphql-codegen/cli ^5.0.0 development
  • @graphql-codegen/client-preset ^4.1.0 development
  • @graphql-typed-document-node/core ^3.2.0 development
  • @types/body-scroll-lock ^2.6.1 development
  • @types/classnames ^2.2.7 development
  • @types/color ^3.0.0 development
  • @types/cytoscape ^3.2.0 development
  • @types/cytoscape-dagre ^2.2.2 development
  • @types/diff ^5.0.3 development
  • @types/downloadjs ^1.4.2 development
  • @types/is-buffer ^2.0.0 development
  • @types/jest ^29.5.3 development
  • @types/js-levenshtein ^1.1.1 development
  • @types/lodash ^4.14.191 development
  • @types/lru-cache 5.1.1 development
  • @types/memoize-one ^5.1.2 development
  • @types/node ^18.15.11 development
  • @types/numeral ^2.0.2 development
  • @types/pako ^2.0.0 development
  • @types/plotly.js ^2.12.18 development
  • @types/prismjs ^1.16.0 development
  • @types/react ^17.0.26 development
  • @types/react-cytoscapejs ^1.2.2 development
  • @types/react-dom ^17.0.9 development
  • @types/react-measure ^2.0.5 development
  • @types/react-redux 7.1.1 development
  • @types/react-resizable ^1.7.0 development
  • @types/react-router-dom ^5.1.2 development
  • @types/react-timeago ^4.1.0 development
  • @types/react-virtualized ^9.21.8 development
  • @types/react-virtualized-auto-sizer ^1.0.0 development
  • @types/safe-json-stringify ^1.1.2 development
  • @types/styled-components ^5.1.26 development
  • @types/uuid ^9.0.1 development
  • @types/wavesurfer.js ^2.0.0 development
  • @types/zen-observable ^0.8.3 development
  • @typescript-eslint/eslint-plugin 5.35.1 development
  • @typescript-eslint/parser 5.35.1 development
  • @vitejs/plugin-react ^2.1.0 development
  • ast-types ^0.14.2 development
  • autoprefixer ^10.4.13 development
  • babel-eslint ^10.1.0 development
  • canvas ^2.9.1 development
  • concurrently ^7.5.0 development
  • detect-browser ^5.2.1 development
  • esbuild ^0.17.15 development
  • esbuild-jest ^0.5.0 development
  • eslint ^8.40.0 development
  • eslint-config-prettier ^2.3.0 development
  • eslint-config-react-app ^7.0.1 development
  • eslint-plugin-babel ^5.2.0 development
  • eslint-plugin-flowtype 4.6.0 development
  • eslint-plugin-import ^2.25.3 development
  • eslint-plugin-jsx-a11y 6.7.1 development
  • eslint-plugin-node ^11.1.0 development
  • eslint-plugin-prettier ^2.2.0 development
  • eslint-plugin-react 7.32.2 development
  • eslint-plugin-react-hooks 4.6.0 development
  • eslint-plugin-wandb link:./eslint-plugin-wandb development
  • identity-obj-proxy ^3.0.0 development
  • jest ^28.0.1 development
  • jest-environment-jsdom ^28.0.1 development
  • jest-junit ^14.0.1 development
  • jest-watch-typeahead ^2.2.2 development
  • json-schema-to-typescript ^11.0.2 development
  • less ^2.7.3 development
  • lodash.defaults ^4.2.0 development
  • nodemon ^2.0.22 development
  • prettier ^2.8.7 development
  • prettier-plugin-tailwindcss ^0.2.1 development
  • rimraf ^3.0.2 development
  • rollup-plugin-visualizer ^5.5.2 development
  • tailwindcss ^3.3.2 development
  • ts-jest ^27.1.4 development
  • ts-node ^10.9.1 development
  • tslint ^6.1.3 development
  • tslint-config-prettier ^1.18.0 development
  • tslint-plugin-prettier ^2.3.0 development
  • typescript 4.7.4 development
  • uuid ^9.0.0 development
  • vite 3.1.3 development
  • @apollo/client ^3.8.4
  • @babylonjs/core ^4.2.0
  • @babylonjs/gui ^4.2.0
  • @babylonjs/loaders ^4.2.0
  • @babylonjs/viewer ^4.2.0
  • @datadog/browser-logs ^4.28.1
  • @datadog/browser-rum ^4.29.0
  • @floating-ui/react ^0.24.5
  • @material-ui/core ^4.11.4
  • @monaco-editor/react ^4.3.1
  • @radix-ui/react-checkbox ^1.0.4
  • @radix-ui/react-radio-group ^1.1.3
  • @radix-ui/react-slider ^1.0.4
  • @radix-ui/react-switch ^1.0.3
  • @radix-ui/react-tabs ^1.0.4
  • @segment/analytics.js-core ^4.1.11
  • @segment/analytics.js-integration-segmentio ^4.4.7
  • @sentry/react ^6.17.3
  • @testing-library/jest-dom 5.11.8
  • @testing-library/react 11.2.3
  • @testing-library/user-event 14.4.3
  • @types/react-syntax-highlighter ^15.5.7
  • @wandb/semantic file:./wandb-semantic-v0.0.1.tgz
  • @wandb/ui file:./wandb-ui-0.1.0.tgz
  • ansi_up ^3.0.0
  • body-scroll-lock ^2.6.4
  • classnames ^2.2.6
  • copy-to-clipboard ^3.0.8
  • cytoscape-dagre ^2.2.2
  • diff ^5.1.0
  • downloadjs ^1.4.7
  • graphql =16.6.0
  • hast-util-sanitize ^4.0.0
  • immer ^9.0.21
  • isomorphic-unfetch ^3.1.0
  • js-levenshtein ^1.1.6
  • json-stringify-pretty-compact ^2.0.0
  • lodash ^4.17.21
  • lru-cache 5.1.1
  • mdast-util-to-string ^1.1.0
  • memoize-one ^6.0.0
  • moment ^2.29.3
  • monaco-editor ^0.29.1
  • monaco-yaml 2.5.1
  • ngl 2.0.0-dev.37
  • numeral ^2.0.6
  • onchange ^7.1.0
  • pako ^2.1.0
  • pca-js ^1.0.2
  • plotly.js ^2.23.2
  • plotly.js-dist-min ^2.6.3
  • prismjs 1.29.0
  • react ^17.0.2
  • react-app-polyfill ^3.0.0
  • react-base-table ^1.12.0
  • react-cytoscapejs ^1.2.1
  • react-datetime ^3
  • react-diff-viewer ^3.1.1
  • react-dom ^17.0.2
  • react-intersection-observer ^8.31.0
  • react-markdown ^8.0.7
  • react-measure ^2.3.0
  • react-redux ^7.1.1
  • react-resizable ^3.0.5
  • react-router-dom ^5.1.2
  • react-select ^5.4.0
  • react-syntax-highlighter ^15.5.0
  • react-table ^6.8.6
  • react-textarea-autosize 8.3.4
  • react-timeago ^4.1.9
  • react-toastify ^4.4.3
  • react-vega ^7.4.1
  • react-virtualized ^9.10.1
  • react-virtualized-auto-sizer ^1.0.6
  • redux ^4.0.1
  • rehype-katex ^2.0.0
  • rehype-raw ^6.1.1
  • rehype-sanitize ^3.0.0
  • rehype-stringify ^9.0.2
  • reinspect ^1.1.0
  • remark-emoji ^2.0.2
  • remark-gfm ^3.0.1
  • remark-math ^2.0.0
  • remark-parse ^7.0.1
  • remark-rehype ^10.1.0
  • safe-json-stringify ^1.2.0
  • semantic-ui-react ^0.88.2
  • slate 0.94.1
  • slate-history 0.93.0
  • slate-react 0.97.1
  • styled-components 5.3.5
  • tailwind-merge ^1.14.0
  • tailwindcss-radix ^2.8.0
  • umap-js ^1.3.3
  • unified ^10.1.0
  • unist-util-visit 2.0.3
  • universal-perf-hooks ^1.0.1
  • vega ^5.24.0
  • vega-lite 5.6.0
  • vega-tooltip ^0.28.0
  • vite-plugin-svgr ^2.4.0
  • wavesurfer.js ^2.0.0
  • web-tree-sitter ^0.20.5
  • zen-observable ^0.10.0
weave-js/src/core/language/js/parser/js-grammar/package.json npm
  • tree-sitter-cli ^0.20.6
weave-js/src/core/language/js/parser/js-grammar/yarn.lock npm
  • tree-sitter-cli 0.20.6
weave-js/yarn.lock npm
  • 2139 dependencies
pyproject.toml pypi
weave/deploy/Dockerfile docker
  • $BASE_IMAGE latest build
docs/package-lock.json npm
  • 1088 dependencies
docs/package.json npm
  • @docusaurus/module-type-aliases 3.1.0 development
  • @docusaurus/tsconfig 3.1.0 development
  • @docusaurus/types 3.1.0 development
  • typescript ~5.2.2 development
  • @docusaurus/core 3.1.0
  • @docusaurus/preset-classic 3.1.0
  • @mdx-js/react ^3.0.0
  • clsx ^2.0.0
  • prism-react-renderer ^2.3.0
  • react ^18.0.0
  • react-dom ^18.0.0
.github/workflows/deploy.yaml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • peaceiris/actions-gh-pages v3 composite
docs/yarn.lock npm
  • 1090 dependencies
.github/workflows/bump_version.yaml actions
  • actions/checkout v3 composite
.github/workflows/check-which-tests-to-run.yaml actions
  • actions/checkout v3 composite
.github/workflows/weave-node-tests.yaml actions
  • actions/checkout v4 composite
  • actions/setup-node v4 composite
  • pnpm/action-setup v4 composite
weave_query/Dockerfile docker
  • frolvlad/alpine-glibc alpine-3.17_glibc-2.34 build
sdks/node/package-lock.json npm
  • 314 dependencies
sdks/node/package.json npm
  • @types/cli-progress ^3.11.6 development
  • @types/jest ^29.5.13 development
  • @types/node ^22.5.1 development
  • jest ^29.7.0 development
  • nyc ^17.1.0 development
  • prettier ^3.3.3 development
  • source-map-support ^0.5.21 development
  • swagger-typescript-api ^13.0.22 development
  • ts-jest ^29.2.5 development
  • tsconfig-paths ^4.2.0 development
  • tsx ^4.19.1 development
  • typedoc ^0.26.10 development
  • typedoc-plugin-markdown ^4.2.9 development
  • cli-progress ^3.12.0
  • openai ^4.68.4
  • uuidv7 ^1.0.1
sdks/node/pnpm-lock.yaml npm
  • 110 dependencies
weave_query/pyproject.toml pypi
weave_query/requirements.legacy.datadog.txt pypi
  • datadog ==0.44.0
  • ddtrace ==1.7.5
weave_query/requirements.legacy.dev.txt pypi
  • black ==22.3.0 development
  • build >=0.10.0 development
  • build * development
  • bump-my-version * development
  • duckdb * development
  • lazydocs * development
  • mypy ==1.0.0 development
  • nbconvert * development
  • playwright * development
  • pre-commit >=3.3.3 development
  • ruff ==0.4.7 development
  • sqlalchemy >=2.0.1 development
  • twine * development
  • twine >=4.0.0 development
  • types-Flask-Cors * development
  • types-Pillow * development
  • types-aiofiles >=22.1.0.6 development
  • types-all ==1.0.0 development
  • types-pkg-resources ==0.1.3 development
  • types-pytz * development
  • types-requests >=2.28.11.8 development
  • types-setuptools >=65.7.0.3 development
  • typing_extensions >=4.4.0 development
weave_query/requirements.legacy.ecosystem.txt pypi
  • bertviz >=1.4.0
  • datasets >=2.9.0
  • faiss-cpu >=1.7.4
  • h5py >=3.8.0
  • hdbscan >=0.8.27
  • langchain >=0.0.132
  • matplotlib *
  • openai >=1.0.0
  • pillow >=10.0.1
  • plotly >=5.13.0
  • replicate >=0.4.0
  • shap >=0.41.0
  • spacy >=3.0.0,<4.0.0
  • sqlalchemy >=2.0.1
  • tiktoken >=0.4.0
  • torch >=1.13.1
  • torchvision >=0.14.1
  • transformers <4.21
  • xgboost >=1.7.3
weave_query/requirements.legacy.engine.txt pypi
  • black >=22.3.0
  • faiss-cpu *
  • flask >=2.1
  • flask_cors >=3.0.10
  • ipynbname >=2021.3.2
  • ipython >=7.34
  • notebook >=6.4.8
  • objgraph >=3.6.0
  • pandas >=1.5.3
  • pillow >=10.0.1
  • scikit-learn >=1.2.1
  • sentry-sdk <1.29.0
  • tabulate *
  • typeguard >=4.1.3
  • umap-learn >=0.5.3
weave_query/requirements.legacy.test.txt pypi
  • Faker ==19.6.2 test
  • bokeh ==3.0.3 test
  • clickhouse_connect ==0.7.0 test
  • cryptography >=42.0.7 test
  • fastapi >=0.110.0 test
  • filelock * test
  • hypothesis >=6.68.3 test
  • nbmake >=0.5 test
  • numpy <1.24 test
  • plotly >=5.13.0 test
  • pytest >=8.2.0 test
  • pytest-asyncio >=0.23.6 test
  • pytest-dotenv * test
  • pytest-rerunfailures >=11.1.2 test
  • pytest-timeout >=2.1.0 test
  • pytest-timestamper >=0.0.9 test
  • pytest-watch >=4.2.0 test
  • pytest-xdist >=3.1.0 test
  • soundfile >=0.11.0 test
  • sqlalchemy * test
  • sqlparse * test
  • supervisor >=4.2.5 test
  • tqdm >=4.66.3 test
  • uvicorn >=0.27.0 test
weave_query/requirements.legacy.txt pypi
  • Werkzeug >=3.0.3
  • aiofiles >=22.1.0
  • aiohttp >=3.8.3
  • aioprocessing >=2.0.1
  • analytics-python >=1.2.9
  • anyio ==3.6.2
  • emoji >=2.12.1
  • flask_cors *
  • gql >=3.4.1
  • graphql-core >3
  • janus >=1.0.0
  • numpy <2.0.0
  • numpy >=1.21
  • openai >=1.0.0
  • packaging >=21.0
  • pyarrow >=14.0.1,<17.0.0
  • pydantic >=2.0.0
  • python-dateutil >=2.8.2
  • python-json-logger >=2.0.4
  • rich >=13.7.0
  • tenacity >=8.3.0,
  • tiktoken >=0.4.0
  • typing_extensions >=4.0.0
  • uuid-utils >=0.9.0
  • wandb >=0.16.4
weave_query/setup.py pypi