Skip to content
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Please, follow the next process when you work on your subtask:

Currently, there are three open tasks:
- [Transpiler](https://github.com/ivy-llc/ivy/issues?q=is%3Aopen+is%3Aissue+label%3ATranspiler)
- [Frontend APIs](https://docs.ivy.dev/overview/contributing/open_tasks.html#frontend-apis)
- [Ivy Experimental API](https://docs.ivy.dev/overview/contributing/open_tasks.html#ivy-experimental-api)
- [Frontend APIs](https://ivy-llc.github.io/docs/overview/contributing/open_tasks.html#frontend-apis)
- [Ivy Experimental API](https://ivy-llc.github.io/docs/overview/contributing/open_tasks.html#ivy-experimental-api)

2. **Create Issue:**

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div style="display: block;" align="center">
<a href="https://ivy.dev/">
<a href="https://ivy-llc.github.io//">
<img class="dark-light" width="50%" src="https://raw.githubusercontent.com/ivy-llc/assets/refs/heads/main/assets/logos/ivy-long.svg"/>
</a>
</div>
Expand Down Expand Up @@ -94,7 +94,7 @@ These are the frameworks that `ivy.transpile` currently supports conversions fro

# Using ivy

Here's some examples, to help you get started using Ivy! The [examples page](https://www.docs.ivy.dev/demos/examples_and_demos.html) also features a wide range of
Here's some examples, to help you get started using Ivy! The [examples page](https://ivy-llc.github.io/docs/demos/examples_and_demos.html) also features a wide range of
demos and tutorials showcasing some more use cases for Ivy.

<details>
Expand Down Expand Up @@ -204,8 +204,8 @@ We believe that everyone can contribute and make a difference. Whether
it\'s writing code, fixing bugs, or simply sharing feedback,
your contributions are definitely welcome and appreciated"

Check out all of our [Open Tasks](https://docs.ivy.dev/overview/contributing/open_tasks.html),
and find out more info in our [Contributing Guide](https://docs.ivy.dev/overview/contributing.html)
Check out all of our [Open Tasks](https://ivy-llc.github.io/docs/overview/contributing/open_tasks.html),
and find out more info in our [Contributing Guide](https://ivy-llc.github.io/docs/overview/contributing.html)
in the docs.

<br clear="all" />
Expand Down
4 changes: 2 additions & 2 deletions docs/overview/api_key.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Setting up your API key
=======================

You can generate a personal api key for Ivy by signing up for free at https://ivy.dev/signin.
This will grant you additional transpilations that can be used for completely free on any code! Find out more at https://ivy.dev/.
You can generate a personal api key for Ivy by signing up for free at https://ivy-llc.github.io/signin.
This will grant you additional transpilations that can be used for completely free on any code! Find out more at https://ivy-llc.github.io/.

Using your API key
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/overview/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The contributor guide is split into the sections below, it's best to go from sta
contributing/setting_up.rst
contributing/the_basics.rst
contributing/building_the_docs.rst
Deep Dive <https://docs.ivy.dev/overview/deep_dive.html>
Deep Dive <https://ivy-llc.github.io/docs/overview/deep_dive.html>
contributing/helpful_resources.rst
contributing/error_handling.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/overview/deep_dive/ivy_frontends.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Ivy Frontends
Introduction
------------

On top of the Ivy functional API and backend functional APIs, Ivy has another set of framework-specific frontend functional APIs, which play an important role in code transpilations, as explained `here <https://docs.ivy.dev/overview/design/ivy_as_a_transpiler.html>`_.
On top of the Ivy functional API and backend functional APIs, Ivy has another set of framework-specific frontend functional APIs, which play an important role in code transpilations, as explained `here <https://ivy-llc.github.io/docs/overview/design/ivy_as_a_transpiler.html>`_.



Expand Down
2 changes: 1 addition & 1 deletion ivy/transpiler/exceptions/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def format_missing_frontends_msg(frequency):
msg = (
"\n\n(MissingFrontendsWarning): Some functions are not yet implemented in the Ivy frontend API."
+ " Visit Ivy's open task page to learn more about contributing: "
+ "https://www.docs.ivy.dev/overview/contributing/open_tasks.html \n\n"
+ "https://www.ivy-llc.github.io/docs/overview/contributing/open_tasks.html \n\n"
+ "The missing functions are listed below as <(number of calls) function_path>:\n-> {}\n\n"
+ "Proceeding with transpilation, but be aware that the computation may fail if it reaches a point "
+ "where these missing frontends are required.\n"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ def _strip(line):
name="ivy",
version=__version__,
author="Ivy",
author_email="contact@ivy.dev",
# author_email="contact@ivy.dev",
description="Convert Machine Learning Code Between Frameworks",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://ivy.dev",
url="https://ivy-llc.github.io",
project_urls={
"Docs": "https://docs.ivy.dev/",
"Docs": "https://ivy-llc.github.io/docs/",
"Source": "https://github.com/ivy-llc/ivy",
},
include_package_data=True,
Expand Down