Skip to content

Commit

Permalink
Deployed 1df453b with MkDocs version: 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-scale committed Aug 8, 2023
1 parent 592cf66 commit 2fb2164
Show file tree
Hide file tree
Showing 22 changed files with 365 additions and 555 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


<link rel="icon" href="https://raw.githubusercontent.com/scaleapi/llm-engine/main/docs/_static/favicon-32x32.png">
<meta name="generator" content="mkdocs-1.4.3, mkdocs-material-9.1.20">
<meta name="generator" content="mkdocs-1.4.2, mkdocs-material-9.1.20">



Expand Down
272 changes: 134 additions & 138 deletions api/data_types/index.html

Large diffs are not rendered by default.

37 changes: 21 additions & 16 deletions api/error_handling/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<link rel="next" href="../../integrations/">

<link rel="icon" href="https://raw.githubusercontent.com/scaleapi/llm-engine/main/docs/_static/favicon-32x32.png">
<meta name="generator" content="mkdocs-1.4.3, mkdocs-material-9.1.20">
<meta name="generator" content="mkdocs-1.4.2, mkdocs-material-9.1.20">



Expand Down Expand Up @@ -663,22 +663,23 @@ <h1 id="error-handling">Error handling<a class="headerlink" href="#error-handlin


<h2 id="llmengine.errors.BadRequestError" class="doc doc-heading">
<span class="doc doc-object-name doc-class-name">BadRequestError</span>
<span class="doc doc-object-name doc-class-name">BadRequestError</span>


<a href="#llmengine.errors.BadRequestError" class="headerlink" title="Permanent link">&para;</a></h2>
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%;"><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>BadRequestError(message: <span style="color: #008000">str</span>)
</code></pre></div>

<div class="doc doc-contents first">
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>


<p>Corresponds to HTTP 400. Indicates that the request had inputs that were invalid. The user should not
attempt to retry the request without changing the inputs.</p>





<div class="doc doc-children">
Expand All @@ -704,21 +705,22 @@ <h2 id="llmengine.errors.BadRequestError" class="doc doc-heading">


<h2 id="llmengine.errors.UnauthorizedError" class="doc doc-heading">
<span class="doc doc-object-name doc-class-name">UnauthorizedError</span>
<span class="doc doc-object-name doc-class-name">UnauthorizedError</span>


<a href="#llmengine.errors.UnauthorizedError" class="headerlink" title="Permanent link">&para;</a></h2>
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%;"><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>UnauthorizedError(message: <span style="color: #008000">str</span>)
</code></pre></div>

<div class="doc doc-contents first">
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>


<p>Corresponds to HTTP 401. This means that no valid API key was provided.</p>





<div class="doc doc-children">
Expand All @@ -744,16 +746,16 @@ <h2 id="llmengine.errors.UnauthorizedError" class="doc doc-heading">


<h2 id="llmengine.errors.NotFoundError" class="doc doc-heading">
<span class="doc doc-object-name doc-class-name">NotFoundError</span>
<span class="doc doc-object-name doc-class-name">NotFoundError</span>


<a href="#llmengine.errors.NotFoundError" class="headerlink" title="Permanent link">&para;</a></h2>
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%;"><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>NotFoundError(message: <span style="color: #008000">str</span>)
</code></pre></div>

<div class="doc doc-contents first">
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>


<p>Corresponds to HTTP 404. This means that the resource (e.g. a Model, FineTune, etc.) could not be found.
Expand All @@ -762,6 +764,7 @@ <h2 id="llmengine.errors.NotFoundError" class="doc doc-heading">
the user does not have access to.</p>





<div class="doc doc-children">
Expand All @@ -787,21 +790,22 @@ <h2 id="llmengine.errors.NotFoundError" class="doc doc-heading">


<h2 id="llmengine.errors.RateLimitExceededError" class="doc doc-heading">
<span class="doc doc-object-name doc-class-name">RateLimitExceededError</span>
<span class="doc doc-object-name doc-class-name">RateLimitExceededError</span>


<a href="#llmengine.errors.RateLimitExceededError" class="headerlink" title="Permanent link">&para;</a></h2>
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%;"><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>RateLimitExceededError(message: <span style="color: #008000">str</span>)
</code></pre></div>

<div class="doc doc-contents first">
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>


<p>Corresponds to HTTP 429. Too many requests hit the API too quickly. We recommend an exponential backoff for retries.</p>





<div class="doc doc-children">
Expand All @@ -827,21 +831,22 @@ <h2 id="llmengine.errors.RateLimitExceededError" class="doc doc-heading">


<h2 id="llmengine.errors.ServerError" class="doc doc-heading">
<span class="doc doc-object-name doc-class-name">ServerError</span>
<span class="doc doc-object-name doc-class-name">ServerError</span>


<a href="#llmengine.errors.ServerError" class="headerlink" title="Permanent link">&para;</a></h2>
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%;"><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>ServerError(status_code: <span style="color: #008000">int</span>, message: <span style="color: #008000">str</span>)
</code></pre></div>

<div class="doc doc-contents first">
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>
<p class="doc doc-class-bases">
Bases: <code>Exception</code></p>


<p>Corresponds to HTTP 5xx errors on the server.</p>





<div class="doc doc-children">
Expand Down
2 changes: 1 addition & 1 deletion api/langchain/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


<link rel="icon" href="https://raw.githubusercontent.com/scaleapi/llm-engine/main/docs/_static/favicon-32x32.png">
<meta name="generator" content="mkdocs-1.4.3, mkdocs-material-9.1.20">
<meta name="generator" content="mkdocs-1.4.2, mkdocs-material-9.1.20">



Expand Down
Loading

0 comments on commit 2fb2164

Please sign in to comment.