Install notes. Alpha notes

main v0.0.15
Jeff Moe 2023-11-15 15:12:31 -07:00
parent 1f0aa3df6c
commit 591dcb64f0
13 changed files with 651 additions and 19 deletions

View File

@ -0,0 +1,54 @@
---
title: Install
description: Parrot Installation
weight: 1
---
{{% pageinfo %}}
Parrot is ALPHA software under development.
Parrot is not ready for end users.
{{% /pageinfo %}}
At present, not all parts of Parrot are ready.
Main components:
* IDE (text/code editor).
* IDE AI extension.
* AI extension server.
* AI inference engine server.
* AI model.
What nominally works:
* IDE (text/code editor).
* IDE AI extension.
* AI extension server.
What is missing:
* AI inference engine server.
* AI model.
It can be made to work, by running your own AI server and model.
That would require, in sum:
* Building Parrot.
* Find a libre model.
* git clone llama.cpp
* Build llama.cpp.
* Run llama.cpp server.
Running the server like this, with GGUF model (see: TheBloke).
```
cd llama.cpp/build
./bin/server -c 4096 --host 127.0.0.1 -t 16 mymodel.gguf
```
For GPU, add perhaps overkill, like:
```
--n-gpu-layers 1024
```

View File

@ -8,3 +8,10 @@ weight: 20
{{% pageinfo %}}
Parrot documentation.
{{% /pageinfo %}}
{{% blocks/lead color="red" %}}
Parrot is ALPHA software under development.
Parrot is not ready for end user usage.
{{% /blocks/lead %}}

View File

@ -31,13 +31,13 @@ Libre means all of the source code is under a free software license, as defined
<meta property="og:type" content="article" />
<meta property="og:url" content="/about/" /><meta property="article:section" content="" />
<meta property="article:modified_time" content="2023-10-23T08:21:59-06:00" /><meta property="og:site_name" content="Parrot" />
<meta property="article:modified_time" content="2023-11-15T14:48:35-07:00" /><meta property="og:site_name" content="Parrot" />
<meta itemprop="name" content="About Parrot">
<meta itemprop="description" content="About Parrot Parrot is a Libre AI IDE. Parrot is a Libre AI IDE.
An IDE is an editor. It is a software application that makes it easy for humans to edit computer source code.
AI adds &ldquo;artificial intelligence&rdquo; to the application, which may help the human write code.
Libre means all of the source code is under a free software license, as defined by the Free Software Foundation. Examples: AGPL, MIT.">
<meta itemprop="dateModified" content="2023-10-23T08:21:59-06:00" />
<meta itemprop="dateModified" content="2023-11-15T14:48:35-07:00" />
<meta itemprop="wordCount" content="106">
<meta itemprop="keywords" content="" /><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="About Parrot"/>

View File

@ -102,7 +102,7 @@ This is the multi-page printable view of this section.
<li>1: <a href="#pg-6e17e09fffc1050f46600282def85180">Overview</a></li>
<li>1: <a href="#pg-938a9f58286986948c46249902119b89">Install</a></li>
@ -121,7 +121,7 @@ This is the multi-page printable view of this section.
<li>2: <a href="#pg-87c02059d6aefce726f2000df8048297">Screenshots</a></li>
<li>2: <a href="#pg-6e17e09fffc1050f46600282def85180">Overview</a></li>
@ -140,7 +140,7 @@ This is the multi-page printable view of this section.
<li>3: <a href="#pg-215932e2bc47d6fe696d8bcda10f88a0">Source Code</a></li>
<li>3: <a href="#pg-87c02059d6aefce726f2000df8048297">Screenshots</a></li>
@ -159,7 +159,26 @@ This is the multi-page printable view of this section.
<li>4: <a href="#pg-b914e8b1c4706b6018ae84ddbd4c4ccc">Website AI Image Generation</a></li>
<li>4: <a href="#pg-215932e2bc47d6fe696d8bcda10f88a0">Source Code</a></li>
<ul>
</ul>
<li>5: <a href="#pg-b914e8b1c4706b6018ae84ddbd4c4ccc">Website AI Image Generation</a></li>
@ -187,6 +206,17 @@ This is the multi-page printable view of this section.
</div>
<div><a id="td-block-1" class="td-offset-anchor"></a></div>
<section class="row td-box td-box--red position-relative td-box--height-auto">
<div class="col-12">
<div class="container text-center td-arrow-down">
<div class="h4 mb-0">
<p>Parrot is ALPHA software under development.
Parrot is not ready for end user usage.</p>
</div>
</div>
</div>
</section>
</div>
</div>
@ -208,7 +238,79 @@ This is the multi-page printable view of this section.
<div class="td-content" style="">
<h1 id="pg-6e17e09fffc1050f46600282def85180">1 - Overview</h1>
<h1 id="pg-938a9f58286986948c46249902119b89">1 - Install</h1>
<div class="lead">Parrot Installation</div>
<div class="pageinfo pageinfo-primary">
<p>Parrot is ALPHA software under development.
Parrot is not ready for end users.</p>
</div>
<p>At present, not all parts of Parrot are ready.</p>
<p>Main components:</p>
<ul>
<li>IDE (text/code editor).</li>
<li>IDE AI extension.</li>
<li>AI extension server.</li>
<li>AI inference engine server.</li>
<li>AI model.</li>
</ul>
<p>What nominally works:</p>
<ul>
<li>IDE (text/code editor).</li>
<li>IDE AI extension.</li>
<li>AI extension server.</li>
</ul>
<p>What is missing:</p>
<ul>
<li>AI inference engine server.</li>
<li>AI model.</li>
</ul>
<p>It can be made to work, by running your own AI server and model.
That would require, in sum:</p>
<ul>
<li>Building Parrot.</li>
<li>Find a libre model.</li>
<li>git clone llama.cpp</li>
<li>Build llama.cpp.</li>
<li>Run llama.cpp server.</li>
</ul>
<p>Running the server like this, with GGUF model (see: TheBloke).</p>
<pre tabindex="0"><code>cd llama.cpp/build
./bin/server -c 4096 --host 127.0.0.1 -t 16 mymodel.gguf
</code></pre><p>For GPU, add perhaps overkill, like:</p>
<pre tabindex="0"><code>--n-gpu-layers 1024
</code></pre>
</div>
<div class="td-content" style="page-break-before: always">
<h1 id="pg-6e17e09fffc1050f46600282def85180">2 - Overview</h1>
<div class="lead">Parrot Overview</div>
@ -260,7 +362,7 @@ Parrot is not ready for end users.</p>
<div class="td-content" style="page-break-before: always">
<h1 id="pg-87c02059d6aefce726f2000df8048297">2 - Screenshots</h1>
<h1 id="pg-87c02059d6aefce726f2000df8048297">3 - Screenshots</h1>
<div class="lead">Parrot Screenshots</div>
@ -298,7 +400,7 @@ Parrot is not ready for end users.</p>
<div class="td-content" style="page-break-before: always">
<h1 id="pg-215932e2bc47d6fe696d8bcda10f88a0">3 - Source Code</h1>
<h1 id="pg-215932e2bc47d6fe696d8bcda10f88a0">4 - Source Code</h1>
<div class="lead">Parrot Source Code</div>
@ -341,7 +443,7 @@ Parrot is not ready for end users.</p>
<div class="td-content" style="page-break-before: always">
<h1 id="pg-b914e8b1c4706b6018ae84ddbd4c4ccc">4 - Website AI Image Generation</h1>
<h1 id="pg-b914e8b1c4706b6018ae84ddbd4c4ccc">5 - Website AI Image Generation</h1>
<div class="lead">Website Images Generated by AI</div>

View File

@ -79,7 +79,9 @@
<li class="td-sidebar-nav__section-title td-sidebar-nav__section with-child active-path" id="m-docs-li">
<a href="/docs/" title="Documentation" class="align-left ps-0 td-sidebar-link td-sidebar-link__section tree-root" id="m-docs"><span class="">Docs</span></a>
<ul class="ul-1">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsoverview-li">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsinstall-li">
<a href="/docs/install/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsinstall"><span class="">Install</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsoverview-li">
<a href="/docs/overview/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsoverview"><span class="">Overview</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsscreenshots-li">
<a href="/docs/screenshots/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsscreenshots"><span class="">Screenshots</span></a>
@ -155,6 +157,9 @@
</div>
<div class="text-muted mt-5 pt-3 border-top">
Last modified November 15, 2023: <a href="https://spacecruft.org/deepcrayon/parrot-www/commit/94a291cd15c02aef11813342bfdd2f03e781e364">Update screenshots, organize a bit (94a291c)</a>
</div>
</div>

View File

@ -79,7 +79,9 @@
<li class="td-sidebar-nav__section-title td-sidebar-nav__section with-child active-path" id="m-docs-li">
<a href="/docs/" title="Documentation" class="align-left ps-0 active td-sidebar-link td-sidebar-link__section tree-root" id="m-docs"><span class="td-sidebar-nav-active-item">Docs</span></a>
<ul class="ul-1">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsoverview-li">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsinstall-li">
<a href="/docs/install/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsinstall"><span class="">Install</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsoverview-li">
<a href="/docs/overview/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsoverview"><span class="">Overview</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsscreenshots-li">
<a href="/docs/screenshots/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsscreenshots"><span class="">Screenshots</span></a>
@ -135,6 +137,17 @@
</div>
<div><a id="td-block-1" class="td-offset-anchor"></a></div>
<section class="row td-box td-box--red position-relative td-box--height-auto">
<div class="col-12">
<div class="container text-center td-arrow-down">
<div class="h4 mb-0">
<p>Parrot is ALPHA software under development.
Parrot is not ready for end user usage.</p>
</div>
</div>
</div>
</section>
<div class="section-index">
@ -148,6 +161,14 @@
<hr class="panel-line">
<div class="entry">
<h5>
<a href="/docs/install/">Install</a>
</h5>
<p>Parrot Installation</p>
</div>
<div class="entry">
<h5>
<a href="/docs/overview/">Overview</a>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,17 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Parrot Install</title>
<link>/docs/install/</link>
<description>Recent content in Install on Parrot</description>
<generator>Hugo -- gohugo.io</generator>
<atom:link href="/docs/install/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -79,7 +79,9 @@
<li class="td-sidebar-nav__section-title td-sidebar-nav__section with-child active-path" id="m-docs-li">
<a href="/docs/" title="Documentation" class="align-left ps-0 td-sidebar-link td-sidebar-link__section tree-root" id="m-docs"><span class="">Docs</span></a>
<ul class="ul-1">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child active-path" id="m-docsoverview-li">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsinstall-li">
<a href="/docs/install/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsinstall"><span class="">Install</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child active-path" id="m-docsoverview-li">
<a href="/docs/overview/" class="align-left ps-0 active td-sidebar-link td-sidebar-link__section" id="m-docsoverview"><span class="td-sidebar-nav-active-item">Overview</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsscreenshots-li">
<a href="/docs/screenshots/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsscreenshots"><span class="">Screenshots</span></a>
@ -166,7 +168,7 @@ Parrot is not ready for end users.</p>
</div>
<div class="text-muted mt-5 pt-3 border-top">
Last modified October 23, 2023: <a href="https://spacecruft.org/deepcrayon/parrot-www/commit/bea0e06cacaca57da394806a117b10019287bd8d">Merge in edited hugo docsy example (bea0e06)</a>
Last modified November 15, 2023: <a href="https://spacecruft.org/deepcrayon/parrot-www/commit/94a291cd15c02aef11813342bfdd2f03e781e364">Update screenshots, organize a bit (94a291c)</a>
</div>
</div>

View File

@ -79,7 +79,9 @@
<li class="td-sidebar-nav__section-title td-sidebar-nav__section with-child active-path" id="m-docs-li">
<a href="/docs/" title="Documentation" class="align-left ps-0 td-sidebar-link td-sidebar-link__section tree-root" id="m-docs"><span class="">Docs</span></a>
<ul class="ul-1">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsoverview-li">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsinstall-li">
<a href="/docs/install/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsinstall"><span class="">Install</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsoverview-li">
<a href="/docs/overview/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsoverview"><span class="">Overview</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child active-path" id="m-docsscreenshots-li">
<a href="/docs/screenshots/" class="align-left ps-0 active td-sidebar-link td-sidebar-link__section" id="m-docsscreenshots"><span class="td-sidebar-nav-active-item">Screenshots</span></a>

View File

@ -79,7 +79,9 @@
<li class="td-sidebar-nav__section-title td-sidebar-nav__section with-child active-path" id="m-docs-li">
<a href="/docs/" title="Documentation" class="align-left ps-0 td-sidebar-link td-sidebar-link__section tree-root" id="m-docs"><span class="">Docs</span></a>
<ul class="ul-1">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsoverview-li">
<li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsinstall-li">
<a href="/docs/install/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsinstall"><span class="">Install</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsoverview-li">
<a href="/docs/overview/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsoverview"><span class="">Overview</span></a>
</li><li class="td-sidebar-nav__section-title td-sidebar-nav__section without-child" id="m-docsscreenshots-li">
<a href="/docs/screenshots/" class="align-left ps-0 td-sidebar-link td-sidebar-link__section" id="m-docsscreenshots"><span class="">Screenshots</span></a>
@ -174,6 +176,9 @@ Steps: 99, Seed: 1191627118, Sampler: Default, CFG scale: 5, Size: 1920x1080, Pa
</div>
<div class="text-muted mt-5 pt-3 border-top">
Last modified November 15, 2023: <a href="https://spacecruft.org/deepcrayon/parrot-www/commit/94a291cd15c02aef11813342bfdd2f03e781e364">Update screenshots, organize a bit (94a291c)</a>
</div>
</div>

View File

@ -2,26 +2,30 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>/docs/install/</loc>
</url><url>
<loc>/docs/overview/</loc>
<lastmod>2023-10-23T08:18:18-06:00</lastmod>
<lastmod>2023-11-15T14:48:35-07:00</lastmod>
</url><url>
<loc>/docs/screenshots/</loc>
<lastmod>2023-10-26T05:39:55-06:00</lastmod>
</url><url>
<loc>/docs/code/</loc>
<lastmod>2023-11-15T14:48:35-07:00</lastmod>
</url><url>
<loc>/docs/website/</loc>
<lastmod>2023-11-15T14:48:35-07:00</lastmod>
</url><url>
<loc>/docs/</loc>
<lastmod>2023-10-23T08:18:18-06:00</lastmod>
</url><url>
<loc>/about/</loc>
<lastmod>2023-10-23T08:21:59-06:00</lastmod>
<lastmod>2023-11-15T14:48:35-07:00</lastmod>
</url><url>
<loc>/categories/</loc>
</url><url>
<loc>/</loc>
<lastmod>2023-10-25T19:37:39-06:00</lastmod>
<lastmod>2023-11-15T14:48:35-07:00</lastmod>
</url><url>
<loc>/search/</loc>
<lastmod>2023-10-23T08:18:18-06:00</lastmod>