Skip to content

Commit

Permalink
[website] add meta image tags
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Nov 25, 2024
1 parent 6a6bb9b commit fd3bb89
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions website/blog/2024-11-18-text-to-sql/text-to-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ authors: [diego]
tags: [SQL, LLMs]
---

<head>
<meta property="og:image" content="blog-formula-1-agent.png" />
</head>

import ThemedImage from '../../src/components/themedimg.jsx'

Some people look surprised when they learn which programming language is the most used in today’s industry: believe it or not, it's SQL. According to the 2024 edition of IEEE’s programming languages ranking, SQL is the language most sought after by employers, closely followed by Python and Java. This trend, we think, can be attributed to two main factors: the continuous rise of cloud-based system architectures, and a general lack of deep technical knowledge among end users who still need access to data insights.
Expand Down Expand Up @@ -149,10 +153,10 @@ Curious to see the model in action? We've set up a few interactive demos at [hal

**Baseball Database**: This agent answers questions about a baseball database. It contains a total of 26 tables with 553,693 rows; including information about players, teams, awards, and game statistics. Feel free to try it in this [link](https://hal9.com/demos/baseball_agent).

<center><a href="https://hal9.com/demos/baseball_agent"><ThemedImage src="baseball-agent"/></a></center>
<center><a href="https://hal9.com/demos/baseball_agent"><ThemedImage src="blog-baseball-agent"/></a></center>

**Formula 1 Database**: This agent answers questions about a formula 1 database. It contains a total of 13 tables with 88,380 rows; including circuits, races, drivers, constructors, and seasons. It tracks results, standings, qualifying rounds, lap times, and pit stops, providing a full view of the performance and status of drivers and teams across F1 history. You can try it [here](https://hal9.com/demos/formula1_agentd).

<center><a href="https://hal9.com/demos/formula1_agent"><ThemedImage src="formula-1-agent"/></a></center>
<center><a href="https://hal9.com/demos/formula1_agent"><ThemedImage src="blog-formula-1-agent"/></a></center>


6 changes: 5 additions & 1 deletion website/blog/2024-11-19-Hal9_Swarm/Hal9_Swarm.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ description: "Explore the integration of OpenAI Swarm with Hal9 to
unlock innovative AI capabilities"
---

<head>
<meta property="og:image" content="blog-movie-recommendations-light.png" />
</head>

import ThemedImage from '../../src/components/themedimg.jsx'

## Using OpenAI Swarm with Hal9: Unlocking New Potential for EnterpriseAI
Expand Down Expand Up @@ -123,4 +127,4 @@ This code is a recommendation system using a "swarm" of AI agents on the Hal9 pl
This setup allows for interactive, specialized recommendations that adapt to user preferences in real-time.

## Sample Conversation
<center><a href="https://hal9.com/demos/swarm"><ThemedImage src="movie-recommendations"/></a></center>
<center><a href="https://hal9.com/demos/swarm"><ThemedImage src="blog-movie-recommendations"/></a></center>

0 comments on commit fd3bb89

Please sign in to comment.