remove hugo docs

main
Jeff Moe 2023-12-02 10:32:54 -07:00
parent 4057a1b6c1
commit c7fcd62595
12 changed files with 0 additions and 248 deletions

View File

@ -1,65 +0,0 @@
---
title: Source Code
description: Parrot Source Code
weight: 1
---
{{% pageinfo %}}
Parrot Source Code
{{% /pageinfo %}}
{{% blocks/lead color="yellow" %}}
<P>
Source code for Parrot is available in the repository:
* https://spacecruft.org/deepcrayon/parrot
![Parrot screenshot of code repo](parrot-screenshot-code-1.png)
Clone thusly:
```
git clone https://spacecruft.org/deepcrayon/parrot
```
<P>
{{% /blocks/lead %}}
<P>
{{% blocks/lead color="yellow" %}}
<P>
Source code for Parrot extension is available in the repository:
* https://spacecruft.org/deepcrayon/parrot-wut
![Parrot extension screenshot of code repo](parrot-wut-screenshot-code-1.png)
Clone thusly:
```
git clone https://spacecruft.org/deepcrayon/parrot-wut
```
<P>
{{% /blocks/lead %}}
<P>
{{% blocks/lead color="yellow" %}}
<P>
Source code for Parrot website is available in the repository:
* https://spacecruft.org/deepcrayon/parrot-www
![Parrot website screenshot of code repo](parrot-www-screenshot-code-1.png)
Clone thusly:
```
git clone https://spacecruft.org/deepcrayon/parrot-www
```
<P>
{{% /blocks/lead %}}

View File

@ -1,84 +0,0 @@
---
title: Install
description: Parrot Installation
weight: 1
---
{{% pageinfo %}}
Parrot is ALPHA software under development.
Parrot is not ready for end users.
{{% /pageinfo %}}
# Requirements
Parrot requires a current GNU/Linux system, such as Debian Stable.
# Download
The current version of Parrot can be downloaded here:
* https://parrot.parts/parrot-releases/current/Parrot.AppImage
Releases are also available on this server:
* https://spacecruft.org/deepcrayon/parrot/releases
# Run
It is an AppImage, so it needs to be make executable, then run:
```
chmod +x Parrot.AppImage
./Parrot.AppImage
```
# Notice
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.
* Search server.
What nominally works:
* IDE (text/code editor).
* IDE AI extension.
* AI extension server.
What is missing:
* AI inference engine server.
* AI model.
* Search server.
# AI Server
Parrot is missing the AI server.
It can be made to work, by running your own AI server and model.
That would require, in sum:
* 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

@ -1,22 +0,0 @@
---
title: Overview
description: Parrot Overview
weight: 1
---
{{% pageinfo %}}
Parrot is ALPHA software under development.
Parrot is not ready for end users.
{{% /pageinfo %}}
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 "artificial intelligence" 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.
* Libre means all of the AI models are under a free content license compatible with Wikipedia. Example: CC by SA.

View File

@ -1,27 +0,0 @@
---
title: Screenshots
description: Parrot Screenshots
weight: 1
---
{{% pageinfo %}}
Parrot Screenshots
{{% /pageinfo %}}
Screenshot from Parrot, alpha.
![Parrot Screenshot](parrot-screenshot-1.png)
![Parrot Screenshot](parrot-screenshot-2.png)
![Parrot Screenshot](parrot-screenshot-3.png)
![Parrot Screenshot](parrot-screenshot-4.png)
![Parrot Screenshot](parrot-screenshot-5.png)
![Parrot Screenshot](parrot-screenshot-6.png)
![parrot screenshot](parrot-screenshot-7.png)
![Parrot Screenshot](parrot-screenshot-8.png)

View File

@ -1,17 +0,0 @@
---
title: Documentation
linkTitle: Docs
menu: {main: {weight: 20}}
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

@ -54,9 +54,6 @@
<li class="nav-item">
<a class="nav-link" href="/about/"><span>About</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/docs/"><span>Docs</span></a>
</li>
</ul>
</div>
<div class="d-none d-lg-block">

View File

@ -71,9 +71,6 @@ Libre means all of the source code is under a free software license, as defined
<li class="nav-item">
<a class="nav-link active" href="/about/"><span>About</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/docs/"><span>Docs</span></a>
</li>
</ul>
</div>
<div class="d-none d-lg-block">

View File

@ -55,9 +55,6 @@
<li class="nav-item">
<a class="nav-link" href="/about/"><span>About</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/docs/"><span>Docs</span></a>
</li>
</ul>
</div>
<div class="d-none d-lg-block">

View File

@ -56,9 +56,6 @@
<li class="nav-item">
<a class="nav-link" href="/about/"><span>About</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/docs/"><span>Docs</span></a>
</li>
</ul>
</div>
<div class="d-none d-lg-block">

View File

@ -59,9 +59,6 @@
<li class="nav-item">
<a class="nav-link" href="/about/"><span>About</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/docs/"><span>Docs</span></a>
</li>
</ul>
</div>
<div class="d-none d-lg-block">

View File

@ -2,21 +2,6 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>/docs/install/</loc>
<lastmod>2023-12-02T10:28:18-07:00</lastmod>
</url><url>
<loc>/docs/overview/</loc>
<lastmod>2023-12-02T10:28:18-07:00</lastmod>
</url><url>
<loc>/docs/screenshots/</loc>
<lastmod>2023-12-02T10:28:18-07:00</lastmod>
</url><url>
<loc>/docs/code/</loc>
<lastmod>2023-12-02T10:28:18-07:00</lastmod>
</url><url>
<loc>/docs/</loc>
<lastmod>2023-12-02T10:28:18-07:00</lastmod>
</url><url>
<loc>/about/</loc>
<lastmod>2023-12-02T10:28:18-07:00</lastmod>
</url><url>

View File

@ -55,9 +55,6 @@
<li class="nav-item">
<a class="nav-link" href="/about/"><span>About</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/docs/"><span>Docs</span></a>
</li>
</ul>
</div>
<div class="d-none d-lg-block">