thomasht86 commited on
Commit
6914fba
·
verified ·
1 Parent(s): dc951e4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -12
README.md CHANGED
@@ -6,19 +6,64 @@ colorTo: gray
6
  sdk: static
7
  pinned: false
8
  ---
9
- <div style="text-align: center; font-family: Arial, sans-serif;">
10
 
11
- <img src="https://firebasestorage.googleapis.com/v0/b/standards-site-beta.appspot.com/o/documents%2F80o6wjeliok%2F762pe0angxc%2FVespa-logo-dark-rgb.svg?alt=media&token=08abbba9-d10f-4041-b4ec-5993d8d366eb" alt="Vespa.ai Logo" style="width: 200px; margin: 20px auto;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
- <div style="font-size: 2.5em; margin: 10px 0;">Vespa.ai</div>
14
-
15
- <div style="font-size: 1.2em; margin-bottom: 20px; color: #555;">AI + data, online. At any scale.</div>
16
-
17
- <div>
18
- <a href="https://vespa.ai" style="margin: 0 10px; text-decoration: none; color: #1a0dab; font-weight: bold;">Homepage</a> |
19
- <a href="https://cloud.vespa.ai/console" style="margin: 0 10px; text-decoration: none; color: #1a0dab; font-weight: bold;">Cloud Console</a> |
20
- <a href="https://github.com/vespa-engine/vespa" style="margin: 0 10px; text-decoration: none; color: #1a0dab; font-weight: bold;">GitHub (Vespa)</a> |
21
- <a href="https://github.com/vespa-engine/pyvespa" style="margin: 0 10px; text-decoration: none; color: #1a0dab; font-weight: bold;">GitHub (PyVespa)</a>
22
  </div>
23
-
24
  </div>
 
6
  sdk: static
7
  pinned: false
8
  ---
 
9
 
10
+ <div class="grid lg:grid-cols-3 gap-x-4 gap-y-7">
11
+ <!-- Introduction paragraph -->
12
+ <p class="lg:col-span-3">
13
+ Vespa.ai offers AI + data solutions online, at any scale. It's an open-source big data serving engine that allows you to build applications requiring large-scale data processing with low-latency responses.
14
+ </p>
15
+ <!-- Vespa.ai Website -->
16
+ <a href="https://vespa.ai" class="block overflow-hidden group">
17
+ <div class="w-full h-40 object-cover mb-2 rounded-lg flex items-center justify-center bg-[#ECFAFF]">
18
+ <img alt="Vespa.ai Logo" src="https://firebasestorage.googleapis.com/v0/b/standards-site-beta.appspot.com/o/documents%2F80o6wjeliok%2F762pe0angxc%2FVespa-logo-dark-rgb.svg?alt=media&token=08abbba9-d10f-4041-b4ec-5993d8d366eb" class="w-40" />
19
+ </div>
20
+ <div class="underline">Vespa.ai Website</div>
21
+ </a>
22
+ <!-- Vespa Cloud Console -->
23
+ <a href="https://cloud.vespa.ai/console" class="block overflow-hidden group">
24
+ <div class="flex items-center h-40 bg-[#ECFAFF] rounded-lg px-4 mb-2">
25
+ <div class="text-center">
26
+ <h3 class="text-lg font-semibold mb-2">Vespa Cloud Console</h3>
27
+ <p class="text-sm">Deploy and manage your Vespa applications in the cloud.</p>
28
+ </div>
29
+ </div>
30
+ <div class="underline">Access Cloud Console</div>
31
+ </a>
32
+ <!-- Vespa GitHub Repository -->
33
+ <a href="https://github.com/vespa-engine/vespa" class="block overflow-hidden">
34
+ <div class="flex items-center h-40 bg-[#ECFAFF] rounded-lg px-4 mb-2">
35
+ <pre class="break-words leading-1 whitespace-pre-line text-xs text-gray-800">
36
+ git clone https://github.com/vespa-engine/vespa.git
37
+ </pre>
38
+ </div>
39
+ <div class="underline">Vespa GitHub Repository</div>
40
+ </a>
41
+ <!-- PyVespa GitHub Repository -->
42
+ <a href="https://github.com/vespa-engine/pyvespa" class="block overflow-hidden group">
43
+ <div class="flex items-center h-40 bg-[#ECFAFF] rounded-lg px-4 mb-2">
44
+ <pre class="break-words leading-1 whitespace-pre-line text-xs text-gray-800">
45
+ pip install pyvespa
46
+ </pre>
47
+ </div>
48
+ <div class="underline">PyVespa GitHub Repository</div>
49
+ </a>
50
+ <!-- Additional Information -->
51
+ <div class="lg:col-span-3">
52
+ <p class="mb-4">
53
+ Get started with Vespa and PyVespa to build scalable applications with real-time data processing capabilities.
54
+ </p>
55
+ <div class="p-4 bg-gradient-to-b from-gray-50-to-white border border-gray-100 rounded-lg relative mb-4">
56
+ <pre class="break-words leading-1 whitespace-pre-line text-xs md:text-sm text-gray-800">
57
+ # Install Vespa Docker Image
58
+ docker run --detach --name vespa --hostname vespa-container --publish 8080:8080 vespaengine/vespa
59
 
60
+ # Connect using PyVespa
61
+ from vespa.application import Vespa
62
+ app = Vespa(url="http://localhost", port=8080)
63
+ </pre>
64
+ </div>
65
+ <p>
66
+ More information: <a href="https://docs.vespa.ai" class="underline">Vespa Documentation</a>
67
+ </p>
 
68
  </div>
 
69
  </div>