Skip to main content

Introducing Panoramica

· 8 min read
Josh Dzielak
Steeve Bete

Today we are very excited to share a new open source project with you called Panoramica. Panoramica makes it easy for developers to work with conversational data, one of the most prevalent kinds on the internet. In particular, Panoramica helps leverage AI and Large Language Models (LLMs) in the context of single conversations, groups, or large panoramas like online communities or social networks.

Panoramica conversation graphPanoramica conversation graph

Why did we build Panoramica?

Josh: At Orbit, most of the data we work with is conversational. Our most popular integrations are to community platforms and social networks. Both varieties of community platform—chat and forum—are conversational in nature. Even GitHub is conversational - conversations happen on issues, pull requests, pull request reviews, and of course GitHub Discussions. Not all community data is conversational, but most of it is.

Panoramica conversation graphPanoramica conversation graph

As community builders, we know how important conversations are. They are the conduit through which connections are made, information is shared, and work is done. Back in April, I started to explore ways that Orbit could bring more insights to users by looking at the conversation level vs. single activities. At the same time, I started looking at how Orbit could help our users leverage AI and the rapid advancement of LLMs in the context of community building. Since many LLMs are optimized for conversations with humans, I thought they might also be very good at analyzing conversations between humans.

Together, these two investigations led to Panoramica. As I got underway with "conversationalizing" Orbit's data, I saw first-hand how tricky it could be. Orbit has integrations to dozens of conversational platforms and each one works a different way. Some platforms have threads, others have multiple levels of replies. Some platforms have channels, others have categories, others have more unique conversational boundaries, such as single issues or PRs on GitHub. Email is its own animal. There is no standard to work off of.

Creating a conversation graph

Making it harder, when conversationalizing the data I wanted to account for a variety of things that I felt were important to understanding the whole conversation. These include:

  • The full Parent/Reply Tree
  • Mentions of people in messages
  • Entities used in messages (hashtags, keywords, extractable topics, etc.)
  • Reactions to messages in the thread
  • Actors who wrote the messages

One of the first choices I needed to make was about how to store all of this information. I reached for a graph database because of how relationship-oriented the data is, and also how common certain kinds of traversals are for analyzing the data. For example, to find all descendants of an original post or all members or entities anywhere in a thread. Or who is connected to who, which is very useful in the community context. It turns out that conversations get much easier to work with when you have a graph data model.

The graph query language I learned, called CYPHER, is very short and expressive. Here's a portion of a query from Panoramica that finds all descendants of each activity in a project and yields a list of nodes that then can be looped over.

MATCH (p:Project)-[:OWNS]->(a:Activity)
WITH DISTINCT a
MATCH path = (a)<-[:REPLIES_TO*0..]-()
WITH a, path
UNWIND nodes(path) as node

This makes it really easy to get all members, entities, mentions, replies, etc. from across an entire thread. And the performance is very fast, even over large datasets.

I could go on about graph queries for hours, so let me get back to the big picture. I did the work to transform Orbit activities into this kind of a conversation graph. Everything except reactions, which was too much scope for now. The result was really compelling. Being able to see the visual graph of conversations in a community helped me see all kinds of patterns about the Orbit community I hadn't noticed before. I knew I wanted to get this in the hands of our users and customers soon.

Adding AI to the mix

Of course, staring at a screenful of nodes and edges isn't for everyone, so I started to look at how AI could allow end users to get these insights without actually knowing or caring that there's a graph involved. At this point, one of Orbit's most senior engineers, Steeve Bete, got involved in the project.

Steeve had been doing some AI explorations of his own and had ideas about how to engineer prompts that would allow end users to ask simple questions and still get the right answers. Questions like:

  • Who in our community knows the most about Python?
  • What are the most popular websites that our members share?
  • What was the most common problem reported in our support channel this month?
  • How many members have had a conversation with Paula? What about?
  • Who is our most influential community member?

For the last month, Steeve and I have been working to bring the first version of Panoramica to you. It is certainly not complete, and not yet capable of answering every question you might have regarding your universe of conversations. But we think it's a decent start and that it could already help developers start to build AI experiences with conversational data.

User and AI Assistant chattingUser and AI Assistant chatting

Why is Panoramica open source?

In building Panoramica, the question came up many times: should we deliver this to users from within our existing (closed source) application or should we do something different? From early on, I felt like we were creating something of value that could be relevant for many new kinds of developers and end users, beyond the boundaries of who we serve today, and yet still create tons of new opportunities for our core audience - the community builders that are the reason we exist.

The power of open source

For an open source project to make sense in comparison to a closed-source option, it needs to have the potential to be much larger because it's packaged and delivered that way. Otherwise it doesn't make a lot of sense. I see that potential here with Panoramica because conversations are everywhere and everyone—community builder or not—finds themselves in tens or hundreds of them every day.

It's now obvious that much of what many developers will be building in the coming years are ways to bring the power of AI into different contexts where it can benefit us humans. As conversations are one of the most important and most universal contexts, it just felt right to put Panoramica out in the open where it can be improved, extended, and forked in order to create conversational AI experiences fast for a huge number of use cases that we can't predict today.

What happens next?

Starting from today, we'd love to start getting feedback from developers and end users about both the developer experience and user experience.

On the user side, any Orbit user (including new ones!) can complete this form to get access to a Panoramica instance hosted by Orbit. Once users have access, they can create a project and connect their Orbit workspace. For AI-powered features, users have the choice to use their own API keys for the LLM + Vector DBs we support out of the box (OpenAI and Pinecone) or use keys that we provide by default.

On the developer side, we are interested in increasing the number of data sources that Panoramica supports. Right now, out-of-the-box support is provided for connecting to an Orbit workspace via the Orbit API and retrieving activities. These activities are then used to create the conversation graph. Right now, we have support in Panoramica for activities from Discord, Discourse, Twitter (err.. X?), and GitHub, and we'll be adding Slack and others shortly.

Developers: Don't miss the introduction to learn more about how Panoramica works.

It's important to us that Panoramica does not only support Orbit out-of-the-box, so we also want to add support for other conversational data sources directly. If you have a data source you'd like to use with Panoramica, please reach out and let's talk about how we can support it! 🙏

We are also interested in contributions in the following areas:

  • Support for more LLMs and Vector DBs via LangChain
  • New UI widgets
  • More themes
  • TypeScript and codebase design
  • Graph data science and algorithms
  • Improving the developer guides
  • Improving the user guides
  • Adding more data sources 😋

If you're interested in contributing, using, or just staying up to date with the project, send us an email and we'll follow up. Watch this space for updates in August and September as we work toward our next milestone, focused on user productivity with the AI and expanding the set of questions that can be answered about conversations and communities.

Until then, have a good summer! 😎