Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fix Generated Python Docs Path #113

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
poetry run make docs
cd docs
poetry run make html
cd ../..
cd ../../..
mkdir -p docs/cdp-agentkit-core/python
cp -r cdp-agentkit-core/python/docs/_build/html/* docs/cdp-agentkit-core/python

Expand All @@ -92,7 +92,7 @@ jobs:
poetry run make docs
cd docs
poetry run make html
cd ../..
cd ../../..
mkdir -p docs/cdp-langchain/python
cp -r cdp-langchain/python/docs/_build/html/* docs/cdp-langchain/python

Expand All @@ -116,7 +116,7 @@ jobs:
poetry run make docs
cd docs
poetry run make html
cd ../..
cd ../../..
mkdir -p docs/twitter-langchain/python
cp -r twitter-langchain/python/docs/_build/html/* docs/twitter-langchain/python

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
## Documentation

- [CDP Agentkit Documentation](https://docs.cdp.coinbase.com/agentkit/docs/welcome)
- [API Reference: CDP Agentkit Core Python](https://coinbase.github.io/cdp-agentkit/cdp-agentkit-core/python/index.html)
- [API Reference: CDP Agentkit LangChain Extension Python](https://coinbase.github.io/cdp-agentkit/cdp-langchain/python/index.html)
- [API Reference: CDP Agentkit Core Node.js](https://coinbase.github.io/cdp-agentkit/cdp-agentkit-core/typescript/index.html)
- [API Reference: CDP Agentkit LangChain Extension Node.js](https://coinbase.github.io/cdp-agentkit/cdp-langchain/typescript/index.html)
- [API Reference: CDP Agentkit Core Python](https://coinbase.github.io/agentkit/cdp-agentkit-core/python/index.html)
- [API Reference: CDP Agentkit LangChain Extension Python](https://coinbase.github.io/agentkit/cdp-langchain/python/index.html)
- [API Reference: CDP Agentkit Core Node.js](https://coinbase.github.io/agentkit/cdp-agentkit-core/typescript/index.html)
- [API Reference: CDP Agentkit LangChain Extension Node.js](https://coinbase.github.io/agentkit/cdp-langchain/typescript/index.html)

## Security and bug reports

Expand Down
2 changes: 1 addition & 1 deletion cdp-agentkit-core/python/docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CDP Agentkit - Core Documentation
=================================

.. include:: README.md
.. include:: ../README.md
:parser: myst_parser.sphinx_

.. toctree::
Expand Down
2 changes: 1 addition & 1 deletion cdp-langchain/python/docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CDP Agentkit - LangChain Documentation
======================================

.. include:: README.md
.. include:: ../README.md
:parser: myst_parser.sphinx_

.. toctree::
Expand Down
2 changes: 1 addition & 1 deletion twitter-langchain/python/docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CDP Agentkit - Twitter LangChain Documentation
==============================================

.. include:: README.md
.. include:: ../README.md
:parser: myst_parser.sphinx_

.. toctree::
Expand Down
Loading