This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetchRssFeed = async () => { | |
const response = await fetch( | |
"https://hnrss.org/frontpage?points=100&count=10" | |
); | |
const text = await response.text(); | |
const items = text.split("<item>").slice(1); | |
return items.map((item) => { | |
let title = item.match(/<title>(.*?)<\/title>/)[1]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
model: groq | |
clients: | |
- type: openai-compatible | |
name: groq | |
api_base: https://api.groq.com/openai/v1 | |
api_key: REPLACE_ME | |
- type: openai | |
api_key: REPLACE_ME | |
api_base: https://api.openai.com/v1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: '2010-09-09' | |
Description: 'CloudFormation template for SSE with Lambda Function URL' | |
Resources: | |
LambdaExecutionRole: | |
Type: AWS::IAM::Role | |
Properties: | |
AssumeRolePolicyDocument: | |
Version: '2012-10-17' | |
Statement: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Triple LLM Inference Demo</title> | |
<style> | |
.container { | |
display: flex; | |
flex-direction: column; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use https://app.ilograph.com to edit and view this document | |
# tutorials are here https://www.ilograph.com/docs/editing/tutorial/#making-some-simple-changes | |
# author: Mike Staub <[email protected]> | |
# Lexicons are here: https://rdmurphy.github.io/atproto-openapi-types | |
# Learn more about atproto.com here: https://github.com/atproto-developers | |
description: |- | |
Architecture and sequence diagrams for the ATprotocol and Bluesky social app network. Generated from source code and whitepaper reference. https://arxiv.org/pdf/2402.03239 | |
resources: |
OlderNewer