Since LLMs are currently all the rage, I wanted to spend some time today to dig into how to leverage the Anthropic API using F#. Anthropic provides a language model that can be utilized for various natural language processing tasks, and it can be a handy tool to add to the application toolkit.
Using F# and Flurl
Read Time: 5 minutesVector Search using F#
Read Time: 14 minutesVector search is an essential tool for many modern applications, particularly for information retrieval. It allows for efficient searching and retrieval of information based on similarity between vectors. Today I will explore how to implement a naive vector search with F#. Whether you are a seasoned F# developer or just starting out, this will provide you some useful information if you want to better understand the basics of vector search in your own projects.
The Great Json Bake-Off
Read Time: 31 minutesIt is difficult to build much without needing to deal with json at some point. In the world of F# there are several options. Today I want to lay out some of the popular choices and offer some some compare and contrast. These libraries all have their own strengths and weaknesses, and bringing it all into a single place to highlight these is a useful point of reference for decision making and general understanding.
F# and LVars
Read Time: 8 minutesToday I want to spend some time with join-semilattices, specifically my F# implementation, LVar. It is a conceptually interesting data structure and approach to managing information, as well as improving program correctness.